/* style/promotions-new-user-bonus-details.css */
.page-promotions-new-user-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from body, but set explicitly for clarity */
}

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

.page-promotions-new-user-bonus-details__dark-bg {
  background-color: #121212;
  color: #ffffff;
}

.page-promotions-new-user-bonus-details__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast sections */
  color: #ffffff;
}

.page-promotions-new-user-bonus-details__hero-section {
  position: relative;
  padding: 100px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

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

.page-promotions-new-user-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus-details__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus-details__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus-details__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-promotions-new-user-bonus-details__introduction-section,
.page-promotions-new-user-bonus-details__how-to-claim-section,
.page-promotions-new-user-bonus-details__eligible-games-section,
.page-promotions-new-user-bonus-details__faq-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus-details__benefits-section,
.page-promotions-new-user-bonus-details__terms-section,
.page-promotions-new-user-bonus-details__why-choose-us-section,
.page-promotions-new-user-bonus-details__cta-final-section {
  padding: 80px 0;
}

.page-promotions-new-user-bonus-details__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus-details__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-user-bonus-details__text-block a:hover {
  text-decoration: underline;
}

.page-promotions-new-user-bonus-details__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus-details__btn-primary:hover {
  background-color: #1e87b7;
}

.page-promotions-new-user-bonus-details__btn-large {
  padding: 20px 40px;
  font-size: 1.4em;
}

/* Benefits Section */
.page-promotions-new-user-bonus-details__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus-details__benefit-icon {
  width: 150px; /* Display size, will be overridden by max-width: 100% on mobile */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-new-user-bonus-details__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus-details__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus-details__cta-area {
  text-align: center;
  margin-top: 60px;
}

/* How to Claim Section */
.page-promotions-new-user-bonus-details__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions-new-user-bonus-details__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-promotions-new-user-bonus-details__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus-details__steps-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Terms Section */
.page-promotions-new-user-bonus-details__terms-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 20px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus-details__terms-list li {
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus-details__terms-list strong {
  color: #26A9E0;
}

/* Eligible Games Section */
.page-promotions-new-user-bonus-details__game-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-new-user-bonus-details__game-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus-details__game-card .page-promotions-new-user-bonus-details__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-user-bonus-details__game-card .page-promotions-new-user-bonus-details__card-title a:hover {
  text-decoration: underline;
}

/* Why Choose Us Section */
.page-promotions-new-user-bonus-details__why-list {
  list-style-type: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-promotions-new-user-bonus-details__why-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus-details__why-list li strong {
  color: #26A9E0;
  display: block;
  margin-bottom: 5px;
}

.page-promotions-new-user-bonus-details__why-list li a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-user-bonus-details__why-list li a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions-new-user-bonus-details__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-new-user-bonus-details__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-new-user-bonus-details__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

.page-promotions-new-user-bonus-details__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-item.active .page-promotions-new-user-bonus-details__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-bonus-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus-details__faq-item.active .page-promotions-new-user-bonus-details__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px 25px 25px;
}

.page-promotions-new-user-bonus-details__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus-details__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-new-user-bonus-details__faq-answer a:hover {
  text-decoration: underline;
}

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

.page-promotions-new-user-bonus-details__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus-details__cta-final-section .page-promotions-new-user-bonus-details__section-title {
  color: #26A9E0;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus-details__cta-final-section .page-promotions-new-user-bonus-details__text-block {
  font-size: 1.2em;
  margin-bottom: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus-details__hero-title {
    font-size: 3em;
  }
  .page-promotions-new-user-bonus-details__hero-description {
    font-size: 1.2em;
  }
}