/* style/promotions-weekly-bonus.css */

/* Base styles for the page */
.page-promotions-weekly-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Ensuring the main content area has a dark background consistent with body */
}

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

.page-promotions-weekly-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-weekly-bonus__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-promotions-weekly-bonus__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  color: #f0f0f0;
}

.page-promotions-weekly-bonus__list-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for list items on dark bg */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.05em;
}

.page-promotions-weekly-bonus__list--two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Color contrast classes */
.page-promotions-weekly-bonus__dark-bg {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-promotions-weekly-bonus__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

/* Buttons */
.page-promotions-weekly-bonus__btn-primary,
.page-promotions-weekly-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-weekly-bonus__btn-primary {
  background-color: #FFD700; /* Primary gold */
  color: #1a1a1a; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-promotions-weekly-bonus__btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
  color: #000000;
}

.page-promotions-weekly-bonus__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-weekly-bonus__btn-secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
}

.page-promotions-weekly-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions-weekly-bonus__cta-buttons--center {
  text-align: center;
}

/* Hero Section */
.page-promotions-weekly-bonus__hero-section {
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-promotions-weekly-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.page-promotions-weekly-bonus__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Overview Section */
.page-promotions-weekly-bonus__overview-section {
  padding: 80px 20px;
}

.page-promotions-weekly-bonus__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-promotions-weekly-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure it behaves as a block element for centering */
  margin: 0 auto;
}

/* How to Participate Section */
.page-promotions-weekly-bonus__how-to-participate-section {
  padding: 80px 20px;
}

/* Bonus Types Section */
.page-promotions-weekly-bonus__bonus-types-section {
  padding: 80px 20px;
}

.page-promotions-weekly-bonus__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-bonus__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  color: #333333;
}

.page-promotions-weekly-bonus__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions-weekly-bonus__card-title {
  font-size: 1.5em;
  color: #1E90FF; /* Blue auxiliary color for card titles */
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions-weekly-bonus__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 15px;
}

.page-promotions-weekly-bonus__card-link {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-weekly-bonus__card-link:hover {
  background-color: #1c7ed6;
}

/* Terms Section */
.page-promotions-weekly-bonus__terms-section {
  padding: 80px 20px;
}

/* Why Choose Section */
.page-promotions-weekly-bonus__why-choose-section {
  padding: 80px 20px;
}

/* FAQ Section */
.page-promotions-weekly-bonus__faq-section {
  padding: 80px 20px;
}

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

.page-promotions-weekly-bonus__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent white for FAQ items on dark bg */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-weekly-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-promotions-weekly-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-weekly-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-promotions-weekly-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

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

.page-promotions-weekly-bonus__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Final CTA Section */
.page-promotions-weekly-bonus__cta-final-section {
  padding: 80px 20px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-weekly-bonus__hero-title {
    font-size: 3em;
  }

  .page-promotions-weekly-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-weekly-bonus__hero-section {
    padding: 100px 15px 60px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset applies */
  }

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

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

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

  .page-promotions-weekly-bonus__text-block {
    font-size: 0.95em;
  }

  .page-promotions-weekly-bonus__list-item {
    font-size: 0.9em;
  }

  .page-promotions-weekly-bonus__list--two-cols {
    grid-template-columns: 1fr;
  }

  .page-promotions-weekly-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-weekly-bonus__btn-primary,
  .page-promotions-weekly-bonus__btn-secondary {
    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;
  }

  /* Responsive images */
  .page-promotions-weekly-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Responsive containers for images/content */
  .page-promotions-weekly-bonus__section,
  .page-promotions-weekly-bonus__card,
  .page-promotions-weekly-bonus__container,
  .page-promotions-weekly-bonus__image-wrapper,
  .page-promotions-weekly-bonus__cards-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-weekly-bonus__cards-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-weekly-bonus__card-image {
    height: 200px;
  }

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

  .page-promotions-weekly-bonus__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-bonus__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-weekly-bonus__section-title {
    font-size: 1.5em;
  }

  .page-promotions-weekly-bonus__btn-primary,
  .page-promotions-weekly-bonus__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}