/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --button-text-color: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
}

.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Default light background from shared.css */
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: inherit;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: inherit;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  gap: 40px;
  min-height: 500px;
}

.page-promotions-new-user-bonus__hero-content {
  flex: 1;
  max-width: 600px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-light);
}

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

.page-promotions-new-user-bonus__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-promotions-new-user-bonus__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: var(--register-button-bg);
  color: var(--button-text-color);
  border: 2px solid var(--register-button-bg);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: darken(var(--register-button-bg), 10%);
  border-color: darken(var(--register-button-bg), 10%);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__cta-center .page-promotions-new-user-bonus__cta-buttons {
  justify-content: center;
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section {
  padding: 80px 20px;
}

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

.page-promotions-new-user-bonus__benefit-card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--border-light);
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* How to Register Section */
.page-promotions-new-user-bonus__how-to-register-section {
  padding: 80px 20px;
}

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

.page-promotions-new-user-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-new-user-bonus__step-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

/* Promotion Details Section */
.page-promotions-new-user-bonus__details-section {
  padding: 80px 20px;
}

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

.page-promotions-new-user-bonus__details-text-block {
  flex: 2;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__details-subtitle {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__details-text-block p {
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__details-text-block ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__details-text-block li {
  margin-bottom: 8px;
}

.page-promotions-new-user-bonus__details-image-wrapper {
  flex: 1;
}

.page-promotions-new-user-bonus__details-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Game Showcase Section */
.page-promotions-new-user-bonus__game-showcase-section {
  padding: 80px 20px;
}

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

.page-promotions-new-user-bonus__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__game-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__game-title a {
  color: var(--button-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__game-title a:hover {
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__game-description {
  font-size: 0.95em;
  color: var(--text-light);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 20px;
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item summary:hover {
  background-color: #f0f0f0;
}

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

.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(--primary-color);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid var(--border-light);
  font-size: 1em;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
  padding: 80px 20px;
  text-align: center;
}

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

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.1em;
  }

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

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

  .page-promotions-new-user-bonus__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-new-user-bonus__hero-content {
    max-width: 100%;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.5em;
  }

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

  .page-promotions-new-user-bonus__hero-image-wrapper {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }

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

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-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-new-user-bonus__content-area,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-register-section,
  .page-promotions-new-user-bonus__details-section,
  .page-promotions-new-user-bonus__game-showcase-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions-new-user-bonus__details-wrapper {
    flex-direction: column;
  }

  .page-promotions-new-user-bonus__details-image-wrapper {
    margin-top: 30px;
    width: 100%;
    text-align: center;
  }

  .page-promotions-new-user-bonus__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2em;
  }

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

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions-new-user-bonus__details-subtitle {
    font-size: 1.5em;
  }
}