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

.page-promotions-new-user-bonus {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions-new-user-bonus__text-block {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-secondary);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

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

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

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-bonus__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-bonus__cta-button--large {
  padding: 18px 45px;
  font-size: 24px;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose {
  background-color: var(--bg-body);
}

.page-promotions-new-user-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__card-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Featured Promotions Section */
.page-promotions-new-user-bonus__featured-promos {
  background-color: var(--deep-green);
}

.page-promotions-new-user-bonus__promo-cards {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.page-promotions-new-user-bonus__promo-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

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

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

.page-promotions-new-user-bonus__promo-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__promo-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(42, 209, 111, 0.4);
}

/* How To Claim Section */
.page-promotions-new-user-bonus__how-to-claim {
  background-color: var(--bg-body);
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__step-item p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
  display: block;
}

.page-promotions-new-user-bonus__step-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__step-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(42, 209, 111, 0.4);
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms {
  background-color: var(--deep-green);
}

.page-promotions-new-user-bonus__terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__term-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__term-card .page-promotions-new-user-bonus__card-title {
  font-size: 22px;
  text-align: left;
}

.page-promotions-new-user-bonus__term-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  background-color: var(--bg-body);
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-color);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item summary:hover {
  background-color: var(--primary-color);
}

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

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
}

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

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

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

/* Conclusion Section */
.page-promotions-new-user-bonus__conclusion {
  background-color: var(--deep-green);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__cta-button--large {
    padding: 15px 40px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 20px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-new-user-bonus__hero-content {
    padding: 0 15px;
  }

  /* Grid Layouts */
  .page-promotions-new-user-bonus__grid,
  .page-promotions-new-user-bonus__promo-cards,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__terms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  /* Cards */
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__promo-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__term-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__card-title,
  .page-promotions-new-user-bonus__promo-title,
  .page-promotions-new-user-bonus__step-title {
    font-size: 20px;
  }
  .page-promotions-new-user-bonus__card p,
  .page-promotions-new-user-bonus__promo-content p,
  .page-promotions-new-user-bonus__step-item p,
  .page-promotions-new-user-bonus__term-card p {
    font-size: 15px;
  }

  /* Images responsiveness */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__promo-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__term-card,
  .page-promotions-new-user-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsiveness (if any) */
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important; /* Small top padding */
  }

  /* Buttons responsiveness */
  .page-promotions-new-user-bonus__card-button,
  .page-promotions-new-user-bonus__step-button,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-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 !important;
    padding-right: 15px !important;
  }
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-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;
  }

  /* FAQ Section */
  .page-promotions-new-user-bonus__faq-list {
    padding: 0 15px;
  }
  .page-promotions-new-user-bonus__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__section-title {
    font-size: 28px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 32px;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 15px;
  }
  .page-promotions-new-user-bonus__card-title,
  .page-promotions-new-user-bonus__promo-title,
  .page-promotions-new-user-bonus__step-title {
    font-size: 18px;
  }
}