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

/* Base styles for the page */
.page-promotions-new-user-bonus {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Space for footer */
}

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

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

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

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

.page-promotions-new-user-bonus__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap with image slightly for visual flow */
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-new-user-bonus__main-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-promotions-new-user-bonus__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__highlight-text {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* General Section Styles */
.page-promotions-new-user-bonus__section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-bonus__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #57E38D; /* Glow */
  border-radius: 2px;
}

.page-promotions-new-user-bonus__section-intro {
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
}

/* Card Styles */
.page-promotions-new-user-bonus__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__card h3 {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

/* Feature Grid */
.page-promotions-new-user-bonus__features-grid,
.page-promotions-new-user-bonus__bonus-info-grid,
.page-promotions-new-user-bonus__steps-grid,
.page-promotions-new-user-bonus__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CTA Button Styles */
.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.6);
  transform: translateY(-2px);
}

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

/* Game Card Specifics */
.page-promotions-new-user-bonus__game-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.page-promotions-new-user-bonus__game-card .page-promotions-new-user-bonus__game-image {
  flex-shrink: 0;
}

.page-promotions-new-user-bonus__game-card .page-promotions-new-user-bonus__game-title {
  margin-top: auto; /* Push title to bottom */
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.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;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
}

.page-promotions-new-user-bonus__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-promotions-new-user-bonus__text-link:hover {
  color: #F2C14E; /* Gold */
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(to right, #0A4B2C, #11A84E);
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__section-title {
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__final-cta-section .page-promotions-new-user-bonus__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 1.15rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -80px;
  }
}

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

  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-new-user-bonus__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
    border-radius: 10px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__section-intro {
    margin-bottom: 30px;
    font-size: 0.95rem;
  }

  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__bonus-info-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions-new-user-bonus__card {
    padding: 25px;
    border-radius: 10px;
  }

  .page-promotions-new-user-bonus__card h3 {
    font-size: 1.3rem;
  }

  .page-promotions-new-user-bonus__card p {
    font-size: 0.9rem;
  }

  .page-promotions-new-user-bonus__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 10px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__cta-container {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  /* Ensure all images are responsive */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/content must be responsive */
  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__hero-content,
  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__bonus-info-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid,
  .page-promotions-new-user-bonus__faq-list,
  .page-promotions-new-user-bonus__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions-new-user-bonus__final-cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 10px;
    font-size: 0.95rem;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  .page-promotions-new-user-bonus__card h3 {
    font-size: 1.2rem;
  }
}