/* style/promotions-welcome-bonus.css */
:root {
  --page-promotions-welcome-bonus-primary-color: #11A84E;
  --page-promotions-welcome-bonus-secondary-color: #22C768;
  --page-promotions-welcome-bonus-card-bg: #11271B;
  --page-promotions-welcome-bonus-background: #08160F;
  --page-promotions-welcome-bonus-text-main: #F2FFF6;
  --page-promotions-welcome-bonus-text-secondary: #A7D9B8;
  --page-promotions-welcome-bonus-border: #2E7A4E;
  --page-promotions-welcome-bonus-glow: #57E38D;
  --page-promotions-welcome-bonus-gold: #F2C14E;
  --page-promotions-welcome-bonus-divider: #1E3A2A;
  --page-promotions-welcome-bonus-deep-green: #0A4B2C;
}

.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  color: var(--page-promotions-welcome-bonus-text-main); /* Light text for dark body background */
  background-color: var(--page-promotions-welcome-bonus-background);
}

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

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__dark-section {
  background-color: var(--page-promotions-welcome-bonus-deep-green);
  color: var(--page-promotions-welcome-bonus-text-main);
}

.page-promotions-welcome-bonus__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--page-promotions-welcome-bonus-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  text-align: center;
}

.page-promotions-welcome-bonus__highlight {
  color: var(--page-promotions-welcome-bonus-gold);
  font-weight: bold;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--page-promotions-welcome-bonus-background);
}

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

.page-promotions-welcome-bonus__hero-image {
  width: 1200px; /* Display width */
  height: 675px; /* Display height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--page-promotions-welcome-bonus-gold);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--page-promotions-welcome-bonus-text-secondary);
}

.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: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-welcome-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--page-promotions-welcome-bonus-glow);
}

.page-promotions-welcome-bonus__btn-secondary {
  background: transparent;
  color: var(--page-promotions-welcome-bonus-gold);
  border: 2px solid var(--page-promotions-welcome-bonus-gold);
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background: var(--page-promotions-welcome-bonus-gold);
  color: var(--page-promotions-welcome-bonus-background);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

/* How-to-Claim Section */
.page-promotions-welcome-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__step-card {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-promotions-welcome-bonus-text-main);
  border: 1px solid var(--page-promotions-welcome-bonus-border);
}

.page-promotions-welcome-bonus__step-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-promotions-welcome-bonus-border);
}

.page-promotions-welcome-bonus__step-title {
  font-size: 24px;
  color: var(--page-promotions-welcome-bonus-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__step-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-promotions-welcome-bonus-text-secondary);
}

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

/* Terms Section */
.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__terms-item {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  border-left: 5px solid var(--page-promotions-welcome-bonus-primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__terms-item strong {
  color: var(--page-promotions-welcome-bonus-text-main);
}

/* Why Choose Section */
.page-promotions-welcome-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__feature-card {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-promotions-welcome-bonus-text-main);
  border: 1px solid var(--page-promotions-welcome-bonus-border);
}

.page-promotions-welcome-bonus__feature-image {
  width: 400px; /* Display width */
  height: 300px; /* Display height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-promotions-welcome-bonus-border);
}

.page-promotions-welcome-bonus__feature-title {
  font-size: 22px;
  color: var(--page-promotions-welcome-bonus-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-promotions-welcome-bonus-text-secondary);
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-promotions-welcome-bonus__faq-item {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--page-promotions-welcome-bonus-border);
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--page-promotions-welcome-bonus-text-main);
  cursor: pointer;
  background-color: var(--page-promotions-welcome-bonus-deep-green);
  border-bottom: 1px solid var(--page-promotions-welcome-bonus-divider);
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus__faq-question:hover {
  background-color: var(--page-promotions-welcome-bonus-primary-color);
}

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-question {
  border-bottom: 1px solid var(--page-promotions-welcome-bonus-divider);
}

.page-promotions-welcome-bonus__faq-qtext {
  flex-grow: 1;
  color: var(--page-promotions-welcome-bonus-gold);
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-promotions-welcome-bonus-gold);
}

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-toggle {
  content: '−';
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  background-color: var(--page-promotions-welcome-bonus-card-bg);
}

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

.page-promotions-welcome-bonus__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Details element specific styling */
.page-promotions-welcome-bonus__faq-item summary {
  list-style: none;
}

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

/* Final CTA Section */
.page-promotions-welcome-bonus__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:cta-bg:1920x400:online betting,bonus,call to action,vietnam]');
  background-size: cover;
  background-position: center;
  border-top: 5px solid var(--page-promotions-welcome-bonus-gold);
}

.page-promotions-welcome-bonus__cta-final-content {
  max-width: 800px;
}

.page-promotions-welcome-bonus__cta-final-content .page-promotions-welcome-bonus__section-title {
  color: var(--page-promotions-welcome-bonus-gold);
}

.page-promotions-welcome-bonus__cta-final-content .page-promotions-welcome-bonus__text-block {
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-image-wrapper {
    max-height: 500px;
  }
  .page-promotions-welcome-bonus__hero-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__text-block {
    font-size: 16px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper {
    max-height: 400px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: 36px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__step-card,
  .page-promotions-welcome-bonus__feature-card {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__step-image,
  .page-promotions-welcome-bonus__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-welcome-bonus__terms-list {
    padding: 0 15px;
  }

  .page-promotions-welcome-bonus__terms-item {
    font-size: 15px;
    padding: 15px;
  }

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

  .page-promotions-welcome-bonus__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

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

  .page-promotions-welcome-bonus__cta-final-section {
    padding: 60px 0;
  }

  .page-promotions-welcome-bonus__cta-final-content .page-promotions-welcome-bonus__text-block {
    padding: 0 15px;
  }

  .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__intro-section,
  .page-promotions-welcome-bonus__how-to-claim-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-final-section,
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__step-card,
  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__feature-card,
  .page-promotions-welcome-bonus__text-center,
  .page-promotions-welcome-bonus__terms-list,
  .page-promotions-welcome-bonus__faq-list,
  .page-promotions-welcome-bonus__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-top: 10px !important;
  }
}