.page-resources-b66-club-bonus-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so text must be light */
  background-color: transparent; /* Main content background is transparent, relying on body's dark background */
}

.page-resources-b66-club-bonus-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-b66-club-bonus-guide__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-b66-club-bonus-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-b66-club-bonus-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

/* Hero Section */
.page-resources-b66-club-bonus-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-b66-club-bonus-guide__hero-section .page-resources-b66-club-bonus-guide__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-resources-b66-club-bonus-guide__hero-content {
  flex: 1;
  max-width: 60%;
}

.page-resources-b66-club-bonus-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-resources-b66-club-bonus-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-b66-club-bonus-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-resources-b66-club-bonus-guide__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-b66-club-bonus-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-resources-b66-club-bonus-guide__btn-primary,
.page-resources-b66-club-bonus-guide__btn-secondary,
.page-resources-b66-club-bonus-guide__card-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-b66-club-bonus-guide__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-b66-club-bonus-guide__btn-primary:hover {
  background-color: #d46c00;
  border-color: #d46c00;
}

.page-resources-b66-club-bonus-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-b66-club-bonus-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-b66-club-bonus-guide__card-button {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-resources-b66-club-bonus-guide__card-button:hover {
  background-color: #1e87bb;
  border-color: #1e87bb;
}

/* General Section Styling */
.page-resources-b66-club-bonus-guide__overview-section,
.page-resources-b66-club-bonus-guide__claiming-guide-section,
.page-resources-b66-club-bonus-guide__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-resources-b66-club-bonus-guide__promotions-detail-section,
.page-resources-b66-club-bonus-guide__vip-section,
.page-resources-b66-club-bonus-guide__trust-safety-section,
.page-resources-b66-club-bonus-guide__cta-section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* Image Grid */
.page-resources-b66-club-bonus-guide__image-grid {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.page-resources-b66-club-bonus-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

/* Card Grid */
.page-resources-b66-club-bonus-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-b66-club-bonus-guide__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-resources-b66-club-bonus-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-b66-club-bonus-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-b66-club-bonus-guide__card p {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

/* Numbered List */
.page-resources-b66-club-bonus-guide__numbered-list {
  list-style-type: none;
  counter-reset: my-counter;
  padding-left: 0;
  margin: 40px 0;
}

.page-resources-b66-club-bonus-guide__numbered-list li {
  counter-increment: my-counter;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 40px;
}

.page-resources-b66-club-bonus-guide__numbered-list li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

/* Video Section */
.page-resources-b66-club-bonus-guide__video-section {
  padding: 60px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
}

.page-resources-b66-club-bonus-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-b66-club-bonus-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-resources-b66-club-bonus-guide__video-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-resources-b66-club-bonus-guide__video-cta {
  margin-top: 20px;
}

/* FAQ Section */
.page-resources-b66-club-bonus-guide__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-b66-club-bonus-guide__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.1);
}

.page-resources-b66-club-bonus-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-b66-club-bonus-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-b66-club-bonus-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-resources-b66-club-bonus-guide__faq-item.active .page-resources-b66-club-bonus-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-b66-club-bonus-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-b66-club-bonus-guide__faq-item.active .page-resources-b66-club-bonus-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-b66-club-bonus-guide__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
}

/* CTA Section */
.page-resources-b66-club-bonus-guide__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-b66-club-bonus-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-b66-club-bonus-guide__hero-title {
    font-size: 3em;
  }

  .page-resources-b66-club-bonus-guide__hero-description {
    font-size: 1.2em;
  }

  .page-resources-b66-club-bonus-guide__hero-section .page-resources-b66-club-bonus-guide__container {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-b66-club-bonus-guide__hero-content {
    max-width: 100%;
  }

  .page-resources-b66-club-bonus-guide__hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-resources-b66-club-bonus-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-b66-club-bonus-guide__hero-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__overview-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__promotions-detail-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__claiming-guide-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__vip-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__trust-safety-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__video-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__faq-section .page-resources-b66-club-bonus-guide__container,
  .page-resources-b66-club-bonus-guide__cta-section .page-resources-b66-club-bonus-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-b66-club-bonus-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-b66-club-bonus-guide__section-title {
    font-size: 2em;
  }

  .page-resources-b66-club-bonus-guide__hero-buttons,
  .page-resources-b66-club-bonus-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-b66-club-bonus-guide__btn-primary,
  .page-resources-b66-club-bonus-guide__btn-secondary,
  .page-resources-b66-club-bonus-guide__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-b66-club-bonus-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-b66-club-bonus-guide__hero-image-wrapper,
  .page-resources-b66-club-bonus-guide__image-grid,
  .page-resources-b66-club-bonus-guide__card-grid,
  .page-resources-b66-club-bonus-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-b66-club-club-bonus-guide__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure spacing from fixed header */
  }

  .page-resources-b66-club-bonus-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-b66-club-bonus-guide__card-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-b66-club-bonus-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-b66-club-bonus-guide__faq-answer {
    padding: 0 15px;
  }

  .page-resources-b66-club-bonus-guide__faq-item.active .page-resources-b66-club-bonus-guide__faq-answer {
    padding: 15px;
  }
}