/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
}

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

.page-promotions-new-user-bonus__section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
  background-color: #0F2540; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #C0C0C0;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  background: linear-gradient(135deg, #0A1931, #2A3B50); /* Gradient for hero */
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  z-index: 0;
}

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

.page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.page-promotions-new-user-bonus__hero-subtitle {
  font-size: 1.3em;
  color: #FFFFFF; /* White subtitle */
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__cta-button:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

/* About iwin Section */
.page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  align-items: center;
}

.page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__text-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #C0C0C0;
}

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

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details .page-promotions-new-user-bonus__detail-item {
  background-color: #1A2B42; /* Slightly lighter dark blue for detail cards */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__bonus-details .page-promotions-new-user-bonus__detail-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for detail titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__bonus-details .page-promotions-new-user-bonus__detail-item p {
  line-height: 1.6;
  color: #E0E0E0;
}

.page-promotions-new-user-bonus__steps-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__steps-list li {
  background-color: #2A3B50; /* Darker background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #E0E0E0;
  text-align: left;
  position: relative;
  padding-left: 45px;
}

.page-promotions-new-user-bonus__steps-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #0A1931;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-new-user-bonus__bonus-details .page-promotions-new-user-bonus__image-wrapper {
  margin-top: 40px;
}

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

.page-promotions-new-user-bonus__cta-block {
  margin-top: 50px;
  padding: 30px;
  background-color: #1A2B42;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__cta-block p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__cta-button--small {
  padding: 14px 30px;
  font-size: 1.1em;
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__terms-list li {
  background-color: #1A2B42;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__terms-list li:before {
  content: '✔';
  color: #FFD700;
  font-size: 1.2em;
  position: absolute;
  left: 15px;
  top: 20px;
}

.page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__disclaimer {
  margin-top: 40px;
  font-style: italic;
  color: #C0C0C0;
}

/* Benefits Section */
.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-item {
  background-color: #1A2B42;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__benefit-item p {
  line-height: 1.6;
  color: #E0E0E0;
}

.page-promotions-new-user-bonus__benefits .page-promotions-new-user-bonus__image-wrapper {
  margin-top: 50px;
}

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

/* FAQ Section */
.page-promotions-new-user-bonus__accordion {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-promotions-new-user-bonus__accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__accordion-header {
  background-color: #1A2B42;
  color: #FFD700;
  width: 100%;
  padding: 20px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__accordion-header:hover {
  background-color: #2A3B50;
}

.page-promotions-new-user-bonus__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__accordion-header[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-new-user-bonus__accordion-content {
  background-color: #0F2540;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-new-user-bonus__accordion-content p {
  padding: 15px 0;
  line-height: 1.6;
  color: #C0C0C0;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta {
  background-color: #0A1931;
  padding: 100px 0;
}

.page-promotions-new-user-bonus__cta-button--large {
  padding: 22px 50px;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-new-user-bonus__secondary-cta-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__text-content, 
  .page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__image-wrapper {
    order: unset; /* Reset order for smaller screens */
  }
  .page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__text-content {
    order: 1;
  }
  .page-promotions-new-user-bonus__about-iwin .page-promotions-new-user-bonus__image-wrapper {
    order: 2;
  }
  .page-promotions-new-user-bonus__hero-section .page-promotions-new-user-bonus__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__section {
    padding: 60px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__bonus-details .page-promotions-new-user-bonus__detail-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus__secondary-cta-button {
    padding: 14px 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__steps-list li {
    font-size: 1em;
    padding-left: 35px;
  }
  .page-promotions-new-user-bonus__steps-list li:before {
    width: 24px;
    height: 24px;
    font-size: 0.8em;
    left: 8px;
  }
  .page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__terms-list li {
    font-size: 0.95em;
    padding-left: 35px;
  }
  .page-promotions-new-user-bonus__terms-conditions .page-promotions-new-user-bonus__terms-list li:before {
    left: 10px;
    top: 18px;
  }
  .page-promotions-new-user-bonus__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions-new-user-bonus__accordion-content p {
    padding: 10px 0;
  }
}