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

/* Body background color is #08160F (dark), so text should be light */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-promotions-welcome-bonus__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Ensure dark background */
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Use clamp for H1 */
  font-weight: 900;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-welcome-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Border color */
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Offers Section */
.page-promotions-welcome-bonus__offers-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-promotions-welcome-bonus__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions-welcome-bonus__card-content {
  padding: 25px;
}

.page-promotions-welcome-bonus__card-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions-welcome-bonus__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-welcome-bonus__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

/* Guide Section */
.page-promotions-welcome-bonus__guide-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-welcome-bonus__guide-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-promotions-welcome-bonus__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #2AD16F;
  color: #F2FFF6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-promotions-welcome-bonus__guide-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__guide-text {
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__guide-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-welcome-bonus__guide-link:hover {
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__guide-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Terms Section */
.page-promotions-welcome-bonus__terms-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-promotions-welcome-bonus__terms-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.page-promotions-welcome-bonus__terms-list {
  flex: 1;
  min-width: 300px;
}

.page-promotions-welcome-bonus__terms-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__terms-subtitle {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__terms-text {
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__terms-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__read-more-terms {
  text-align: center;
  margin-top: 40px;
}

/* Why Choose Section */
.page-promotions-welcome-bonus__why-choose-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-welcome-bonus__benefit-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-promotions-welcome-bonus__benefit-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__benefit-text {
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__benefit-links a {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}

.page-promotions-welcome-bonus__benefit-links a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__why-go88x-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-promotions-welcome-bonus__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  user-select: none;
}

.page-promotions-welcome-bonus__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__faq-link {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__faq-link:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__all-faq-link {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section */
.page-promotions-welcome-bonus__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #08160F; /* Background */
  color: #F2FFF6;
}

.page-promotions-welcome-bonus__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(2.2em, 4.5vw, 3.5em);
  }

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

  .page-promotions-welcome-bonus__offer-grid,
  .page-promotions-welcome-bonus__guide-steps,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promotions-welcome-bonus__terms-content {
    flex-direction: column;
  }

  .page-promotions-welcome-bonus__terms-image {
    max-width: 100%;
  }
}

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

  .page-promotions-welcome-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper {
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

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

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

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-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-welcome-bonus__offer-grid,
  .page-promotions-welcome-bonus__guide-steps,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-welcome-bonus__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

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

  .page-promotions-welcome-bonus__section-description {
    font-size: 0.95em;
  }

  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__offers-section,
  .page-promotions-welcome-bonus__guide-section,
  .page-promotions-welcome-bonus__terms-section,
  .page-promotions-welcome-bonus__why-choose-section,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .page-promotions-welcome-bonus__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Buttons container mobile adaptation */
  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__button-group,
  .page-promotions-welcome-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.5em;
  }

  .page-promotions-welcome-bonus__card-title {
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__guide-title,
  .page-promotions-welcome-bonus__terms-subtitle,
  .page-promotions-welcome-bonus__benefit-title {
    font-size: 1.4em;
  }

  .page-promotions-welcome-bonus__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px 15px;
  }
}