/* style/promotions-new-user-bonus.css */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-new-user-bonus__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions-new-user-bonus__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f47a8 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-promotions-new-user-bonus__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #FFD700;
}

.page-promotions-new-user-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-new-user-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border-color: #FFD700;
}

.page-promotions-new-user-bonus__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-promotions-new-user-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-promotions-new-user-bonus__hero-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.2;
}

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

.page-promotions-new-user-bonus__overview-section,
.page-promotions-new-user-bonus__how-to-claim-section,
.page-promotions-new-user-bonus__terms-section,
.page-promotions-new-user-bonus__explore-section,
.page-promotions-new-user-bonus__download-app-section,
.page-promotions-new-user-bonus__faq-section,
.page-promotions-new-user-bonus__responsible-gaming-section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__overview-section {
  background-color: #f8f8f8;
}

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

.page-promotions-new-user-bonus__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__feature-text {
  color: #666;
  font-size: 1em;
}

.page-promotions-new-user-bonus__how-to-claim-section {
  background-color: #fff;
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A237E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions-new-user-bonus__step-text {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-image {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-top: 15px;
  border-radius: 10px;
}

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

.page-promotions-new-user-bonus__terms-section {
  background-color: #f0f2f7;
}

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

.page-promotions-new-user-bonus__terms-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #1A237E;
  border-radius: 8px;
  font-size: 1.05em;
  color: #444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-new-user-bonus__contact-info {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__text-link {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions-new-user-bonus__explore-section {
  background-color: #fff;
}

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

.page-promotions-new-user-bonus__game-type-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-new-user-bonus__game-type-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-new-user-bonus__game-type-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__game-type-text {
  color: #666;
  font-size: 0.95em;
}

.page-promotions-new-user-bonus__download-app-section {
  background-color: #1A237E;
  color: #fff;
}

.page-promotions-new-user-bonus__download-app-section .page-promotions-new-user-bonus__section-title {
  color: #FFD700;
}

.page-promotions-new-user-bonus__download-app-section .page-promotions-new-user-bonus__section-description {
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__app-download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__app-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.page-promotions-new-user-bonus__app-info p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__app-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.page-promotions-new-user-bonus__app-badge {
  height: 40px;
  object-fit: contain;
}

.page-promotions-new-user-bonus__app-image-wrapper {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.page-promotions-new-user-bonus__app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__faq-section {
  background-color: #f8f8f8;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promotions-new-user-bonus__faq-question {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-promotions-new-user-bonus__faq-answer {
  font-size: 1em;
  color: #666;
  display: none; /* Initially hidden */
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  display: block;
}

.page-promotions-new-user-bonus__responsible-gaming-section {
  background-color: #e0e2e9;
  text-align: center;
}

.page-promotions-new-user-bonus__responsible-gaming-section .page-promotions-new-user-bonus__section-title {
  color: #1A237E;
}

.page-promotions-new-user-bonus__responsible-gaming-section .page-promotions-new-user-bonus__section-description {
  color: #555;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus .highlight-text {
  color: #FFD700;
}

@media (max-width: 992px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 3em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__hero-image-container {
    width: 100%;
    height: auto;
    position: relative;
    opacity: 0.3;
    order: -1;
  }
  .page-promotions-new-user-bonus__hero-section {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-promotions-new-user-bonus__app-download-content {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus__app-info,
  .page-promotions-new-user-bonus__app-image-wrapper {
    max-width: 100%;
    text-align: center;
  }
  .page-promotions-new-user-bonus__app-info p {
    text-align: center;
  }
  .page-promotions-new-user-bonus__app-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-new-user-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-new-user-bonus__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__section-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__features-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__game-types-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__overview-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__terms-section,
  .page-promotions-new-user-bonus__explore-section,
  .page-promotions-new-user-bonus__download-app-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__responsible-gaming-section {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__step-image {
    height: 150px;
  }
  .page-promotions-new-user-bonus__app-badge {
    height: 35px;
  }
}