/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Body background is #000 */
}

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-promotions-new-user-bonus__heading--light {
  color: #ffffff;
}

.page-promotions-new-user-bonus__sub-description {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary,
.page-promotions-new-user-bonus__hero-cta {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__hero-cta {
  background-color: #FFD700;
  color: #1A202C; /* Ensure high contrast */
}

.page-promotions-new-user-bonus__btn-primary:hover,
.page-promotions-new-user-bonus__hero-cta:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: #1A202C;
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #2c3546;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  padding-top: 0; /* shared handles body padding-top */
  padding-bottom: 60px;
  background-color: #1A202C;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.page-promotions-new-user-bonus__hero-content {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Highlight title */
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__hero-image {
  flex-shrink: 0;
  width: 50%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bonus Introduction */
.page-promotions-new-user-bonus__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions-new-user-bonus__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-promotions-new-user-bonus__text-block p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333333;
}

.page-promotions-new-user-bonus__image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* How to Claim the Bonus */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
}

.page-promotions-new-user-bonus__step-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions-new-user-bonus__step-card p {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__image-block--full-width {
  grid-column: 1 / -1;
  margin-top: 20px;
}

/* Terms & Conditions */
.page-promotions-new-user-bonus__info-block {
  text-align: left;
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__info-block p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-promotions-new-user-bonus__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 16px;
}

.page-promotions-new-user-bonus__list li {
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__info-block a {
  color: #1A202C;
  text-decoration: underline;
}

.page-promotions-new-user-bonus__info-block a:hover {
  color: #FFD700;
}

.page-promotions-new-user-bonus__info-block img {
  margin-top: 30px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Other Promotions */
.page-promotions-new-user-bonus__promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-promotions-new-user-bonus__promo-card img {
  width: 100%;
   /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions-new-user-bonus__promo-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions-new-user-bonus__promo-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #FFD700;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__promo-card p {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__promo-card .page-promotions-new-user-bonus__btn-primary {
  margin: 0 20px 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__cta-center {
  text-align: center;
}

/* Why Choose ty le keo nha cai? */
.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.page-promotions-new-user-bonus__benefit-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__benefit-card img {
  
  
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1A202C;
}

.page-promotions-new-user-bonus__benefit-card p {
  font-size: 15px;
  color: #555555;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  text-align: left;
}

.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08); /* Light background for answer on dark section */
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-promotions-new-user-bonus__faq-question:active {
  background: rgba(255, 255, 255, 0.25);
}

.page-promotions-new-user-bonus__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X for active state */
}

/* General image and button responsive rules */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-new-user-bonus a[class*="btn"],
.page-promotions-new-user-bonus button[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 40px;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 16px;
  }
  .page-promotions-new-user-bonus__hero-image {
    width: 45%;
  }
  .page-promotions-new-user-bonus__content-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__content-grid .page-promotions-new-user-bonus__image-block {
    order: -1;
  }
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-promotions-new-user-bonus__promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-new-user-bonus__heading {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .page-promotions-new-user-bonus__sub-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__hero-container {
    flex-direction: column;
    padding: 30px 15px;
  }
  .page-promotions-new-user-bonus__hero-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .page-promotions-new-user-bonus__hero-title {
    font-size: 32px;
  }
  .page-promotions-new-user-bonus__hero-image {
    width: 100%;
    max-width: 100%;
  }
  
  .page-promotions-new-user-bonus__hero-cta {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px !important;
  }

  .page-promotions-new-user-bonus__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-promotions-new-user-bonus__text-block p {
    font-size: 15px;
  }
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__step-card {
    padding: 20px;
    min-height: auto;
  }
  .page-promotions-new-user-bonus__step-title {
    font-size: 20px;
  }
  .page-promotions-new-user-bonus__step-card p {
    font-size: 14px;
  }
  .page-promotions-new-user-bonus__list {
    font-size: 15px;
  }
  .page-promotions-new-user-bonus__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__promo-card img {
    
  }
  .page-promotions-new-user-bonus__promo-title {
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__promo-card p {
    font-size: 14px;
  }
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__benefit-title {
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
    padding: 15px !important;
  }
  
  /* Mobile specific image adaptation */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Ensure containers adapt */
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__content-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__promo-grid,
  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__faq-list,
  .page-promotions-new-user-bonus__info-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Buttons responsive */
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .page-promotions-new-user-bonus a[class*="btn"],
  .page-promotions-new-user-bonus button[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-promotions-new-user-bonus__cta-center .page-promotions-new-user-bonus__btn-primary {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* LOGO轮播项特殊处理 (not used on this page, but included for completeness as per prompt) */
  .page-promotions-new-user-bonus__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }
  
  .page-promotions-new-user-bonus__promo-card .page-promotions-new-user-bonus__btn-primary {
    margin-left: 0;
    margin-right: 0;
  }
  
  .page-promotions-new-user-bonus__step-card .page-promotions-new-user-bonus__btn-secondary {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}