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

/* Base styles for the page content, ensuring contrast with body background */
.page-promotions-new-user-bonus {
  color: #F2FFF6; /* Text Main for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__dark-bg {
  background: #08160F; /* Background color for sections */
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 10px;
  backdrop-filter: blur(5px);
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

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

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  text-align: left;
}

.page-promotions-new-user-bonus__text-block a {
  color: #2AD16F; /* Button top gradient color for links */
  text-decoration: underline;
}

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

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button top gradient color */
  border: 2px solid #2AD16F;
  margin-left: 15px;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__container {
  background: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__steps-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-promotions-new-user-bonus__image-wrapper {
  flex: 1;
  min-width: 300px;
}

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

.page-promotions-new-user-bonus__steps-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-new-user-bonus__step-item {
  background: rgba(46, 122, 78, 0.2); /* Border color with transparency */
  border-left: 5px solid #2AD16F;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.page-promotions-new-user-bonus__step-item:last-child {
  margin-bottom: 0;
}

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

.page-promotions-new-user-bonus__step-title {
  color: #F2C14E; /* Gold */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Terms and Conditions Section */
.page-promotions-new-user-bonus__terms-section {
  background: #0A4B2C; /* Deep Green */
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions-new-user-bonus__term-item {
  background: rgba(17, 39, 27, 0.5); /* Card BG with transparency */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  border-left: 3px solid #57E38D; /* Glow color */
}

.page-promotions-new-user-bonus__term-item strong {
  color: #F2C14E; /* Gold */
}

/* Games Section */
.page-promotions-new-user-bonus__games-section {
  background: #08160F; /* Background */
}

.page-promotions-new-user-bonus__game-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: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F2FFF6;
}

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

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__card-title {
  color: #F2C14E; /* Gold */
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section {
  background: #0A4B2C; /* Deep Green */
}

.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: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #F2FFF6;
}

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

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  background: #08160F; /* Background */
}

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

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

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2C14E; /* Gold */
  background: rgba(46, 122, 78, 0.3); /* Border color with transparency */
  transition: background 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background: rgba(46, 122, 78, 0.5);
}

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-question {
  background: rgba(46, 122, 78, 0.5);
}

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

/* Conclusion Section */
.page-promotions-new-user-bonus__conclusion-section {
  background: #08160F; /* Background */
  padding-bottom: 80px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }
  .page-promotions-new-user-bonus__steps-layout {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__image-wrapper {
    order: -1; /* Image appears above steps on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }
  .page-promotions-new-user-bonus__hero-content {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-new-user-bonus__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
  .page-promotions-new-user-bonus__text-block {
    font-size: 0.95rem;
  }
  
  /* Images 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__image-wrapper,
  .page-promotions-new-user-bonus__game-card,
  .page-promotions-new-user-bonus__benefit-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions-new-user-bonus__card-image {
    height: auto; /* Allow height to adjust for smaller screens */
    min-height: 200px; /* Ensure minimum size */
  }

  /* Buttons responsive */
  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .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;
    padding-right: 15px;
    margin-left: 0 !important; /* Reset margin for stacked buttons */
  }
  .page-promotions-new-user-bonus__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__container {
    padding: 30px 20px;
  }
  .page-promotions-new-user-bonus__step-item {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-promotions-new-user-bonus__section {
    padding: 30px 10px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.4rem, 6.5vw, 1.8rem);
  }
  .page-promotions-new-user-bonus__game-grid, .page-promotions-new-user-bonus__benefits-grid {
    gap: 20px;
  }
  .page-promotions-new-user-bonus__how-to-claim-section .page-promotions-new-user-bonus__container {
    padding: 20px 15px;
  }
}