/* style/exclusive-promo-codes-new-player.css */
.page-exclusive-promo-codes-new-player {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A2342;
  line-height: 1.6;
}

.page-exclusive-promo-codes-new-player__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-exclusive-promo-codes-new-player__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0A2342, #1A3A60);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-exclusive-promo-codes-new-player__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-exclusive-promo-codes-new-player__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-exclusive-promo-codes-new-player__hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-exclusive-promo-codes-new-player__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-exclusive-promo-codes-new-player__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-exclusive-promo-codes-new-player__section {
  padding: 60px 0;
}

.page-exclusive-promo-codes-new-player__section--intro {
  background-color: #1A3A60;
}

.page-exclusive-promo-codes-new-player__section--intro img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-exclusive-promo-codes-new-player__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-exclusive-promo-codes-new-player__section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-exclusive-promo-codes-new-player__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-exclusive-promo-codes-new-player__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-exclusive-promo-codes-new-player__section ol,
.page-exclusive-promo-codes-new-player__section ul {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-exclusive-promo-codes-new-player__section ul {
  list-style-type: disc;
}

.page-exclusive-promo-codes-new-player__section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-exclusive-promo-codes-new-player__section li strong {
  color: #FFD700;
}

.page-exclusive-promo-codes-new-player__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px;
  text-align: center;
}

.page-exclusive-promo-codes-new-player__button--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-exclusive-promo-codes-new-player__button--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-exclusive-promo-codes-new-player__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-exclusive-promo-codes-new-player__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-exclusive-promo-codes-new-player__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-exclusive-promo-codes-new-player__benefit-item {
  background-color: #1A3A60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-exclusive-promo-codes-new-player__benefit-item:hover {
  transform: translateY(-5px);
}

.page-exclusive-promo-codes-new-player__benefit-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(35deg) brightness(1.2);
}

.page-exclusive-promo-codes-new-player__benefit-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-exclusive-promo-codes-new-player__benefit-item p {
  font-size: 1em;
  color: #B0B0B0;
}

.page-exclusive-promo-codes-new-player__section--terms ul {
  list-style-type: none;
  padding: 0;
  margin-left: 0;
}

.page-exclusive-promo-codes-new-player__section--terms li {
  background-color: #1A3A60;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-exclusive-promo-codes-new-player__section--terms li strong {
  display: block;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item {
  background-color: #1A3A60;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item p {
  display: none;
  margin-top: 15px;
  color: #B0B0B0;
}

.page-exclusive-promo-codes-new-player__section--faq .page-exclusive-promo-codes-new-player__faq-item.active p {
  display: block;
}

.page-exclusive-promo-codes-new-player__section--cta {
  background: linear-gradient(45deg, #0A2342, #FFD700);
  text-align: center;
  padding: 80px 20px;
}

.page-exclusive-promo-codes-new-player__cta-content {
  max-width: 800px;
}

.page-exclusive-promo-codes-new-player__section--cta h2 {
  color: #0A2342;
  text-shadow: none;
}

.page-exclusive-promo-codes-new-player__section--cta h2::after {
  background-color: #0A2342;
}

.page-exclusive-promo-codes-new-player__section--cta p {
  color: #0A2342;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-exclusive-promo-codes-new-player__section--cta .page-exclusive-promo-codes-new-player__button--primary {
  background-color: #0A2342;
  color: #FFD700;
  border-color: #0A2342;
}

.page-exclusive-promo-codes-new-player__section--cta .page-exclusive-promo-codes-new-player__button--primary:hover {
  background-color: #2A4A7A;
  border-color: #2A4A7A;
  color: #FFD700;
}

.page-exclusive-promo-codes-new-player__section--cta .page-exclusive-promo-codes-new-player__button--secondary {
  background-color: #FFD700;
  color: #0A2342;
  border-color: #FFD700;
}

.page-exclusive-promo-codes-new-player__section--cta .page-exclusive-promo-codes-new-player__button--secondary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  color: #0A2342;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-exclusive-promo-codes-new-player__hero h1 {
    font-size: 2.5em;
  }
  .page-exclusive-promo-codes-new-player__hero p {
    font-size: 1.1em;
  }
  .page-exclusive-promo-codes-new-player__section h2 {
    font-size: 2em;
  }
  .page-exclusive-promo-codes-new-player__section h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-exclusive-promo-codes-new-player__hero {
    padding: 60px 15px;
  }
  .page-exclusive-promo-codes-new-player__hero h1 {
    font-size: 2em;
  }
  .page-exclusive-promo-codes-new-player__hero p {
    font-size: 1em;
  }
  .page-exclusive-promo-codes-new-player__section {
    padding: 40px 0;
  }
  .page-exclusive-promo-codes-new-player__section h2 {
    font-size: 1.8em;
  }
  .page-exclusive-promo-codes-new-player__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-exclusive-promo-codes-new-player__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-exclusive-promo-codes-new-player__hero h1 {
    font-size: 1.8em;
  }
  .page-exclusive-promo-codes-new-player__section h2 {
    font-size: 1.5em;
  }
  .page-exclusive-promo-codes-new-player__section h3 {
    font-size: 1.3em;
  }
  .page-exclusive-promo-codes-new-player__section p,
  .page-exclusive-promo-codes-new-player__section li {
    font-size: 0.95em;
  }
}