/* style/promotions-weekly-bonus.css */
.page-promotions-weekly-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #0a0a0a, so use light text */
  background-color: transparent; /* inherited from body, handled by shared.css */
}

.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: 3em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-weekly-bonus__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promotions-weekly-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for hero */
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure hero clears fixed header */
}

.page-promotions-weekly-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.page-promotions-weekly-bonus__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-weekly-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-promotions-weekly-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Buttons */
.page-promotions-weekly-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-promotions-weekly-bonus__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions-weekly-bonus__btn-primary,
.page-promotions-weekly-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-weekly-bonus__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

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

.page-promotions-weekly-bonus__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Video Section */
.page-promotions-weekly-bonus__video-section {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}

.page-promotions-weekly-bonus__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-weekly-bonus__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Bonuses Type Section */
.page-promotions-weekly-bonus__bonuses-type-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-promotions-weekly-bonus__card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent background for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-weekly-bonus__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-weekly-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-weekly-bonus__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-weekly-bonus__card-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-weekly-bonus__btn-text {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions-weekly-bonus__btn-text:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* How to Claim Section */
.page-promotions-weekly-bonus__claim-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-promotions-weekly-bonus__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-weekly-bonus__claim-step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-bonus__step-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-weekly-bonus__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions-weekly-bonus__step-text a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-weekly-bonus__step-text a:hover {
  text-decoration: underline;
}

/* Why Choose K8 Section */
.page-promotions-weekly-bonus__why-k8-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-weekly-bonus__why-k8-section .page-promotions-weekly-bonus__section-title,
.page-promotions-weekly-bonus__why-k8-section .page-promotions-weekly-bonus__section-description {
  color: #FFFFFF;
}

.page-promotions-weekly-bonus__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions-weekly-bonus__advantage-item {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2); /* Dark overlay for contrast */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-bonus__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-weekly-bonus__advantage-title {
  font-size: 1.6em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-weekly-bonus__advantage-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions-weekly-bonus__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-promotions-weekly-bonus__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-weekly-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFFFFF;
  font-weight: bold;
  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 20px;
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-weekly-bonus__faq-item.active .page-promotions-weekly-bonus__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 20px;
}

.page-promotions-weekly-bonus__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
}

.page-promotions-weekly-bonus__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-weekly-bonus__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section (Bottom) */
.page-promotions-weekly-bonus__cta-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-weekly-bonus__hero-title {
    font-size: 3em;
  }
  .page-promotions-weekly-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-weekly-bonus__section-title {
    font-size: 2.5em;
  }
  .page-promotions-weekly-bonus__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-weekly-bonus__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-promotions-weekly-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-weekly-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-weekly-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-weekly-bonus__section-description {
    font-size: 0.95em;
  }
  .page-promotions-weekly-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-promotions-weekly-bonus__btn-primary,
  .page-promotions-weekly-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Mobile images responsiveness */
  .page-promotions-weekly-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-weekly-bonus__hero-image-wrapper,
  .page-promotions-weekly-bonus__card-image,
  .page-promotions-weekly-bonus__advantage-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile video responsiveness */
  .page-promotions-weekly-bonus video,
  .page-promotions-weekly-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-weekly-bonus__video-section,
  .page-promotions-weekly-bonus__video-container,
  .page-promotions-weekly-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-weekly-bonus__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Video section needs to clear header in mobile */
  }

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

  .page-promotions-weekly-bonus__cards-grid,
  .page-promotions-weekly-bonus__claim-steps,
  .page-promotions-weekly-bonus__advantages-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-weekly-bonus__card,
  .page-promotions-weekly-bonus__claim-step-item,
  .page-promotions-weekly-bonus__advantage-item {
    padding: 20px;
  }

  .page-promotions-weekly-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-weekly-bonus__faq-answer {
    padding: 15px;
  }
  .page-promotions-weekly-bonus__faq-item.active .page-promotions-weekly-bonus__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-bonus__hero-title {
    font-size: 2em;
  }
  .page-promotions-weekly-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-weekly-bonus__btn-primary,
  .page-promotions-weekly-bonus__btn-secondary {
    font-size: 0.95em;
    padding: 10px 15px;
  }
}