.page-index-registration-bonuses {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#1a1a1a), so text is white */
  background-color: #1a1a1a; /* Ensure consistency with shared.css body background */
}

.page-index-registration-bonuses__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-registration-bonuses__section {
  padding: 60px 0;
}

.page-index-registration-bonuses__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-registration-bonuses__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-index-registration-bonuses__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-index-registration-bonuses__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-index-registration-bonuses__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
  max-width: 50%;
}

.page-index-registration-bonuses__main-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-index-registration-bonuses__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-index-registration-bonuses__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-registration-bonuses__btn-register,
.page-index-registration-bonuses__btn-login,
.page-index-registration-bonuses__btn-primary,
.page-index-registration-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-index-registration-bonuses__btn-register,
.page-index-registration-bonuses__btn-login {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-index-registration-bonuses__btn-register:hover,
.page-index-registration-bonuses__btn-login:hover {
  background-color: #e00a0a;
  transform: translateY(-3px);
}

.page-index-registration-bonuses__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-index-registration-bonuses__btn-primary:hover {
  background-color: #005a2d;
  transform: translateY(-3px);
}

.page-index-registration-bonuses__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-index-registration-bonuses__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-index-registration-bonuses__hero-image-wrapper {
  flex: 1;
  text-align: right;
  z-index: 0;
  max-width: 50%;
}

.page-index-registration-bonuses__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Why Join Section */
.page-index-registration-bonuses__why-join {
  background-color: #1a1a1a;
}

.page-index-registration-bonuses__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-registration-bonuses__feature-item {
  text-align: center;
}

.page-index-registration-bonuses__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-bonuses__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-index-registration-bonuses__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Registration Guide Section */
.page-index-registration-bonuses__registration-guide {
  background-color: #1a1a1a;
}

.page-index-registration-bonuses__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-index-registration-bonuses__step-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-registration-bonuses__step-number {
  font-size: 2.5em;
  color: #017439;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-index-registration-bonuses__step-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-index-registration-bonuses__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-index-registration-bonuses__cta-center {
  text-align: center;
}

/* Bonuses Overview Section */
.page-index-registration-bonuses__bonuses-overview {
  background-color: #017439; /* Brand primary color as background */
  color: #ffffff;
}

.page-index-registration-bonuses__bonuses-overview .page-index-registration-bonuses__section-title,
.page-index-registration-bonuses__bonuses-overview .page-index-registration-bonuses__section-intro {
  color: #ffffff;
}

.page-index-registration-bonuses__bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-registration-bonuses__bonus-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.15); /* Slightly lighter card background for contrast */
  padding: 30px;
}

.page-index-registration-bonuses__bonus-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-bonuses__bonus-title {
  font-size: 1.6em;
  color: #FFFF00; /* Yellow for bonus titles for emphasis */
  margin-bottom: 15px;
}

.page-index-registration-bonuses__bonus-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-index-registration-bonuses__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
}

/* Game Variety Section */
.page-index-registration-bonuses__game-variety {
  background-color: #1a1a1a;
}

.page-index-registration-bonuses__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-registration-bonuses__game-card {
  text-align: center;
}

.page-index-registration-bonuses__game-image {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-bonuses__game-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-registration-bonuses__game-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-registration-bonuses__game-title a:hover {
  color: #FFFF00;
}

.page-index-registration-bonuses__game-description {
  color: #f0f0f0;
}

/* Mobile App Section */
.page-index-registration-bonuses__mobile-app {
  background-color: #017439;
  color: #ffffff;
}

.page-index-registration-bonuses__mobile-app .page-index-registration-bonuses__section-title,
.page-index-registration-bonuses__mobile-app .page-index-registration-bonuses__section-intro {
  color: #ffffff;
}

.page-index-registration-bonuses__app-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-registration-bonuses__app-info {
  flex: 1;
  font-size: 1.1em;
}

.page-index-registration-bonuses__app-info p {
  margin-bottom: 15px;
}

.page-index-registration-bonuses__app-features-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-index-registration-bonuses__app-features-list li {
  margin-bottom: 8px;
}

.page-index-registration-bonuses__app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-registration-bonuses__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-index-registration-bonuses__faq-section {
  background-color: #1a1a1a;
}

.page-index-registration-bonuses__faq-list {
  margin-top: 40px;
}

.page-index-registration-bonuses__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.page-index-registration-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-registration-bonuses__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-registration-bonuses__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFFFFF;
}

.page-index-registration-bonuses__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-index-registration-bonuses__faq-item.active .page-index-registration-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-index-registration-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
}

.page-index-registration-bonuses__faq-item.active .page-index-registration-bonuses__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure override */
  padding: 15px 25px;
}

/* CTA Bottom Section */
.page-index-registration-bonuses__cta-bottom {
  background-color: #017439;
  text-align: center;
}

.page-index-registration-bonuses__cta-bottom .page-index-registration-bonuses__section-title,
.page-index-registration-bonuses__cta-bottom .page-index-registration-bonuses__section-intro {
  color: #ffffff;
}

.page-index-registration-bonuses__cta-bottom .page-index-registration-bonuses__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* Image and Content Area CSS Rules for min-size 200px */
.page-index-registration-bonuses img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-bonuses__hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: var(--header-offset, 120px);
  }

  .page-index-registration-bonuses__hero-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .page-index-registration-bonuses__main-title {
    font-size: 2.8em;
  }

  .page-index-registration-bonuses__hero-description {
    font-size: 1.1em;
  }

  .page-index-registration-bonuses__hero-image-wrapper {
    max-width: 80%;
  }

  .page-index-registration-bonuses__app-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-registration-bonuses__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-index-registration-bonuses__main-title {
    font-size: 2.2em;
  }

  .page-index-registration-bonuses__section-title {
    font-size: 2em;
  }

  .page-index-registration-bonuses__hero-image-wrapper,
  .page-index-registration-bonuses__app-image-wrapper {
    max-width: 100%;
  }

  /* Mobile responsive for images */
  .page-index-registration-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size */
    min-height: 200px !important;
  }
  
  /* Mobile responsive for videos (if any) */
  .page-index-registration-bonuses video,
  .page-index-registration-bonuses__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive for containers */
  .page-index-registration-bonuses__section,
  .page-index-registration-bonuses__card,
  .page-index-registration-bonuses__container,
  .page-index-registration-bonuses__video-section,
  .page-index-registration-bonuses__video-container,
  .page-index-registration-bonuses__video-wrapper,
  .page-index-registration-bonuses__cta-buttons,
  .page-index-registration-bonuses__button-group,
  .page-index-registration-bonuses__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  
  /* Mobile responsive for buttons */
  .page-index-registration-bonuses__cta-button,
  .page-index-registration-bonuses__btn-primary,
  .page-index-registration-bonuses__btn-secondary,
  .page-index-registration-bonuses__btn-register,
  .page-index-registration-bonuses__btn-login,
  .page-index-registration-bonuses a[class*="button"],
  .page-index-registration-bonuses a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }
  
  .page-index-registration-bonuses__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-index-registration-bonuses__faq-question,
  .page-index-registration-bonuses__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-registration-bonuses__faq-question h3 {
    font-size: 1.1em;
  }
}