/* style/promotions-new-user-bonus.css */

:root {
  --benvip-primary: #11A84E;
  --benvip-secondary: #22C768;
  --benvip-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --benvip-card-bg: #11271B;
  --benvip-bg: #08160F;
  --benvip-text-main: #F2FFF6;
  --benvip-text-secondary: #A7D9B8;
  --benvip-border: #2E7A4E;
  --benvip-glow: #57E38D;
  --benvip-gold: #F2C14E;
  --benvip-divider: #1E3A2A;
  --benvip-deep-green: #0A4B2C;
}

.page-promotions-new-user-bonus {
  /* Default text color for light backgrounds, overridden by specific sections */
  color: #333333;
  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;
}

/* Dark background sections */
.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--benvip-bg);
  color: var(--benvip-text-main);
}

/* Light background sections */
.page-promotions-new-user-bonus__light-bg {
  background-color: #ffffff; /* Default white background for light sections */
  color: #333333; /* Dark text for light backgrounds */
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--benvip-primary);
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__main-title {
  color: var(--benvip-text-main);
}

.page-promotions-new-user-bonus__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--benvip-text-secondary);
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__section-description {
  color: #555555;
}

.page-promotions-new-user-bonus__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--benvip-primary);
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__subtitle {
  color: var(--benvip-text-main);
}

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

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__text-block {
  color: #444444;
}

/* Buttons */
.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--benvip-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: #ffffff;
  color: var(--benvip-primary);
  border: 2px solid var(--benvip-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--benvip-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to improve text readability */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over the image, but not overlapping text onto image */
  background: rgba(8, 22, 15, 0.7); /* Use dark background with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--benvip-text-main);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--benvip-text-secondary);
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

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

.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(--benvip-card-bg);
  color: var(--benvip-text-main);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--benvip-border);
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--benvip-glow);
}

.page-promotions-new-user-bonus__card-title a {
  color: var(--benvip-glow);
  text-decoration: none;
}

.page-promotions-new-user-bonus__card-title a:hover {
  text-decoration: underline;
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1rem;
  color: var(--benvip-text-secondary);
}

/* Registration Guide Section */
.page-promotions-new-user-bonus__registration-guide-section {
  padding: 80px 0;
}

.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-item {
  text-align: center;
  padding: 25px;
  background-color: var(--benvip-card-bg);
  border-radius: 10px;
  border: 1px solid var(--benvip-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--benvip-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--benvip-glow);
}

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

.page-promotions-new-user-bonus__registration-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details-section {
  padding: 80px 0;
}

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

.page-promotions-new-user-bonus__bonus-card {
  background-color: var(--benvip-card-bg);
  color: var(--benvip-text-main);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--benvip-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__bonus-card .page-promotions-new-user-bonus__card-title {
  color: var(--benvip-gold);
}

.page-promotions-new-user-bonus__terms-conditions {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--benvip-deep-green);
  border-radius: 10px;
  border: 1px solid var(--benvip-border);
  color: var(--benvip-text-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__terms-conditions ul {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}

.page-promotions-new-user-bonus__terms-conditions li {
  margin-bottom: 10px;
  color: var(--benvip-text-secondary);
}

.page-promotions-new-user-bonus__bonus-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Games Section */
.page-promotions-new-user-bonus__games-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__game-categories {
  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: var(--benvip-card-bg);
  color: var(--benvip-text-main);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--benvip-border);
  transition: transform 0.3s ease;
}

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

/* Security and Support Section */
.page-promotions-new-user-bonus__security-support-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.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(--benvip-card-bg);
  border: 1px solid var(--benvip-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--benvip-text-main);
  background-color: var(--benvip-deep-green);
  border-bottom: 1px solid var(--benvip-divider);
  list-style: none; /* For details/summary */
}

.page-promotions-new-user-bonus__faq-item[open] > .page-promotions-new-user-bonus__faq-question {
  border-bottom: 1px solid var(--benvip-border);
}

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--benvip-glow);
  margin-left: 15px;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--benvip-text-secondary);
  line-height: 1.8;
}

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

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-title {
  color: var(--benvip-primary);
}

.page-promotions-new-user-bonus__cta-final-section .page-promotions-new-user-bonus__section-description {
  color: #555555;
}

.page-promotions-new-user-bonus__cta-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -100px;
  }
  .page-promotions-new-user-bonus__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -80px;
    padding: 15px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 2rem;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }
  .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 {
    max-width: 100% !important;
    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__section-title {
    font-size: 1.8rem;
  }
  .page-promotions-new-user-bonus__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__guide-steps,
  .page-promotions-new-user-bonus__bonus-grid,
  .page-promotions-new-user-bonus__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user-bonus__benefit-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__bonus-card,
  .page-promotions-new-user-bonus__game-card {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__card-image,
  .page-promotions-new-user-bonus__registration-image,
  .page-promotions-new-user-bonus__bonus-image,
  .page-promotions-new-user-bonus__image-block img,
  .page-promotions-new-user-bonus__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__hero-content,
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__registration-guide-section,
  .page-promotions-new-user-bonus__bonus-details-section,
  .page-promotions-new-user-bonus__games-section,
  .page-promotions-new-user-bonus__security-support-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section,
  .page-promotions-new-user-bonus__grid-two-cols,
  .page-promotions-new-user-bonus__faq-list {
    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__hero-section {
    padding-top: 10px !important;
  }
}