/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color-page: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

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

.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-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions-new-user-bonus__cta-button:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions-new-user-bonus__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 350px;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  height: 100%;
  max-height: 600px; /* Limit hero image height */
  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 {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: 3.5em;
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

.page-promotions-new-user-bonus__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 20px var(--glow-color);
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__feature-description {
  color: var(--text-secondary);
  font-size: 1em;
}

/* Offer Details Section */
.page-promotions-new-user-bonus__dark-section {
  background-color: var(--deep-green);
}

.page-promotions-new-user-bonus__detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__detail-content,
.page-promotions-new-user-bonus__detail-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus__detail-image-wrapper img {
  border-radius: 12px;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__detail-subtitle {
  font-size: 2em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__list li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
}

.page-promotions-new-user-bonus__list-icon {
  color: var(--glow-color);
  font-size: 1.2em;
  margin-right: 10px;
  line-height: 1;
}

/* Registration Guide Section */
.page-promotions-new-user-bonus__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-promotions-new-user-bonus__step-number {
  font-size: 3em;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-description {
  color: var(--text-secondary);
  font-size: 1em;
}

/* Explore Games Section */
.page-promotions-new-user-bonus__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__game-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

/* Security and Fair Play Section */
.page-promotions-new-user-bonus__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__content-image--left {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus__security-text-block {
  flex: 1;
  min-width: 300px;
}

.page-promotions-new-user-bonus__text-link {
  color: var(--glow-color);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus__text-link:hover {
  color: var(--gold-color);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.3em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: var(--deep-green);
}

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

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--text-secondary);
  font-size: 1.1em;
  line-height: 1.7;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta-content {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Image Styles (Global for this page) */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__section-padding {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promotions-new-user-bonus__cta-button--centered {
    max-width: 90%;
  }

  /* Images, Videos, Buttons responsive */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper,
  .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;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }
  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-promotions-new-user-bonus__cta-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;
  }
  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__guide-steps,
  .page-promotions-new-user-bonus__game-categories {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__detail-wrapper,
  .page-promotions-new-user-bonus__security-content {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__content-image--left {
    order: -1; /* Image appears before text on mobile for security section */
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__detail-subtitle {
    font-size: 1.6em;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 1em;
  }
}