/* style/promotions-new-user-bonus.css */

/* Custom Colors from palette */
:root {
  --win55-primary-color: #11A84E;
  --win55-secondary-color: #22C768;
  --win55-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --win55-card-bg: #11271B;
  --win55-background: #08160F;
  --win55-text-main: #F2FFF6;
  --win55-text-secondary: #A7D9B8;
  --win55-border: #2E7A4E;
  --win55-glow: #57E38D;
  --win55-gold: #F2C14E;
  --win55-divider: #1E3A2A;
  --win55-deep-green: #0A4B2C;
}

.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--win55-text-main); /* Main text color for the page */
  background-color: var(--win55-background); /* Page background color */
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px; /* Space for content below image */
  background-color: var(--win55-background);
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto; /* Responsive image */
  display: block;
  object-fit: cover;
}

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--win55-gold);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__description {
  font-size: 1.15rem;
  color: var(--win55-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  background-color: var(--win55-background);
  border-top: 1px solid var(--win55-divider);
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--win55-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__section-title--gold {
  color: var(--win55-gold);
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--win55-text-main);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__cta-buttons--center {
  justify-content: center;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--win55-btn-gradient);
  color: var(--win55-text-main);
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--win55-glow);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: var(--win55-primary-color);
  border: 2px solid var(--win55-primary-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--win55-primary-color);
  color: var(--win55-text-main);
  box-shadow: 0 0 10px rgba(var(--win55-primary-color), 0.5);
}

.page-promotions-new-user-bonus__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 20px auto 40px auto;
}

.page-promotions-new-user-bonus__list-item {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--win55-text-main);
}

.page-promotions-new-user-bonus__list-item::before {
  content: '✓';
  color: var(--win55-glow);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__inline-link {
  color: var(--win55-glow);
  text-decoration: underline;
}

.page-promotions-new-user-bonus__inline-link:hover {
  color: var(--win55-gold);
}

.page-promotions-new-user-bonus__steps-grid,
.page-promotions-new-user-bonus__games-grid,
.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__step-card,
.page-promotions-new-user-bonus__game-card,
.page-promotions-new-user-bonus__feature-card {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--win55-text-main);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__step-card:hover,
.page-promotions-new-user-bonus__game-card:hover,
.page-promotions-new-user-bonus__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__step-card img,
.page-promotions-new-user-bonus__game-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5rem;
  color: var(--win55-gold);
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1rem;
  color: var(--win55-text-secondary);
}

.page-promotions-new-user-bonus__faq-section {
  padding: 60px 20px;
  background-color: var(--win55-deep-green);
  border-top: 1px solid var(--win55-divider);
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--win55-text-main);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--win55-deep-green);
  color: var(--win55-text-main);
  position: relative; /* For the toggle icon */
}

.page-promotions-new-user-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-question::marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  color: var(--win55-gold);
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05rem;
  color: var(--win55-text-secondary);
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__final-cta {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--win55-background);
  border-top: 1px solid var(--win55-divider);
}

.page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__container {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border);
  border-radius: 12px;
  padding: 40px;
  max-width: 900px;
}

.page-promotions-new-user-bonus__description--gold {
  color: var(--win55-gold);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    padding: 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-promotions-new-user-bonus__description {
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid,
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-promotions-new-user-bonus__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-new-user-bonus__hero-content {
    padding: 10px;
    margin-top: 10px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__description {
    font-size: 0.95rem;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }

  .page-promotions-new-user-bonus__container {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__text-block,
  .page-promotions-new-user-bonus__list,
  .page-promotions-new-user-bonus__faq-list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid,
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-user-bonus__step-card img,
  .page-promotions-new-user-bonus__game-card img {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__final-cta .page-promotions-new-user-bonus__container {
    padding: 30px 20px;
  }
}

/* General image responsiveness for content area */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Ensure content area images are not smaller than 200px */
.page-promotions-new-user-bonus__step-card img,
.page-promotions-new-user-bonus__game-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Video responsiveness - if any video were present */
.page-promotions-new-user-bonus video,
.page-promotions-new-user-bonus__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-new-user-bonus__video-section,
.page-promotions-new-user-bonus__video-container,
.page-promotions-new-user-bonus__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important;
  }
}