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

:root {
  --primary-color: #CC0000;
  --secondary-color: #333333;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #ffffff;
  --background-dark: #1a1a1a; /* Slightly darker than aux for better contrast on dark sections */
  --card-background-light: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--background-light);
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-dark);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
  background: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, #CC3333 100%);
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-light);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-new-user-bonus__hero-media {
  margin-top: 40px;
  z-index: 0;
}

.page-promotions-new-user-bonus__hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  font-size: 1em;
  box-shadow: none;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-large {
  padding: 18px 45px;
  font-size: 1.4em;
}

.page-promotions-new-user-bonus__btn-full-width {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* General Section Styling */
.page-promotions-new-user-bonus__benefits-section,
.page-promotions-new-user-bonus__bonus-details-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__cta-final-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__benefits-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-title {
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__bonus-details-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-title {
  color: var(--text-light);
}

.page-promotions-new-user-bonus__benefits-section .page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__faq-section .page-promotions-new-user-bonus__section-description {
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__bonus-details-section .page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__terms-section .page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.page-promotions-new-user-bonus__card {
  background-color: var(--card-background-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Specific Grids */
.page-promotions-new-user-bonus__benefits-grid,
.page-promotions-new-user-bonus__bonus-grid,
.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__benefit-title,
.page-promotions-new-user-bonus__bonus-item-title,
.page-promotions-new-user-bonus__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__bonus-details-section .page-promotions-new-user-bonus__bonus-item-title {
  color: var(--primary-color); /* Ensure contrast on card */
}

.page-promotions-new-user-bonus__bonus-item-text {
  color: var(--text-dark);
}

/* Image Styling */
.page-promotions-new-user-bonus__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 60px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.page-promotions-new-user-bonus__video-section {
  margin-top: 60px;
  text-align: center;
}

.page-promotions-new-user-bonus__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.page-promotions-new-user-bonus__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-promotions-new-user-bonus__video-caption {
  margin-top: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* How to Claim Steps */
.page-promotions-new-user-bonus__step-item {
  text-align: center;
}

.page-promotions-new-user-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid var(--primary-color);
}

/* Terms & Conditions */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--text-light);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-background-light);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 20px;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
  background: var(--secondary-color);
  text-align: center;
  color: var(--text-light);
}

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-title {
  color: var(--text-light);
}

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Contrast Fix */
.page-promotions-new-user-bonus__contrast-fix {
  background: var(--background-light) !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--border-color) !important;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding: 60px 15px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-promotions-new-user-bonus__btn-large {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .page-promotions-new-user-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-new-user-bonus__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__bonus-grid,
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__bonus-details-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    padding: 50px 0;
  }

  /* Image Responsive */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper,
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Video Responsive */
  .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 {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section starts below header */
  }

  /* Button Responsive */
  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex; /* Ensure flex is applied for wrapping */
    flex-direction: column; /* Stack buttons vertically on mobile */
  }
  .page-promotions-new-user-bonus__btn-full-width {
    width: 100%;
  }

  .page-promotions-new-user-bonus__terms-item {
    padding: 15px;
    font-size: 1em;
  }

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

  .page-promotions-new-user-bonus__faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promotions-new-user-bonus__btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}