.page-promotions-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-promotions-first-deposit h1, .page-promotions-first-deposit h2, .page-promotions-first-deposit h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 1em;
  text-align: center;
}

.page-promotions-first-deposit h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-first-deposit h2 {
  font-size: 2.2em;
  margin-top: 1.5em;
}

.page-promotions-first-deposit h3 {
  font-size: 1.6em;
  margin-top: 1em;
}

.page-promotions-first-deposit p {
  margin-bottom: 1em;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-first-deposit__section--overview p, .page-promotions-first-deposit__section--terms ul {
  text-align: left;
}

.page-promotions-first-deposit__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4b 100%);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit__hero-content {
  z-index: 1;
  position: relative;
}

.page-promotions-first-deposit__hero-content h1 {
  color: #FFD700;
  font-size: 3.5em;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit__hero-content p {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 2em;
  max-width: 900px;
}

.page-promotions-first-deposit__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
  overflow: hidden;
}

.page-promotions-first-deposit__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
}

.page-promotions-first-deposit__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;
  cursor: pointer;
  text-align: center;
}

.page-promotions-first-deposit__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit__btn--primary:hover {
  background-color: #e5be00;
  border-color: #e5be00;
  transform: translateY(-3px);
}

.page-promotions-first-deposit__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions-first-deposit__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-promotions-first-deposit__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-first-deposit__btn--huge {
  padding: 25px 50px;
  font-size: 1.5em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.page-promotions-first-deposit__details .page-promotions-first-deposit__promo-card {
  background-color: #2a313d;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit__details .page-promotions-first-deposit__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  max-height: 200px;
  object-fit: contain;
}

.page-promotions-first-deposit__promo-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 0.8em;
}

.page-promotions-first-deposit__promo-card p {
  color: #e5dfd3;
  font-size: 1.05em;
  margin-bottom: 1.5em;
}

.page-promotions-first-deposit__promo-card ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5em auto;
  max-width: 400px;
  text-align: left;
}

.page-promotions-first-deposit__promo-card ul li {
  background-color: #3e4757;
  margin-bottom: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  color: #e5dfd3;
  font-size: 0.95em;
}

.page-promotions-first-deposit__section--details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding-top: 20px;
}

.page-promotions-first-deposit__section--how-to-claim ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.page-promotions-first-deposit__section--how-to-claim ol li {
  position: relative;
  padding-left: 80px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-first-deposit__section--how-to-claim ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__section--how-to-claim ol li h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #FFD700;
}

.page-promotions-first-deposit__section--how-to-claim ol li p {
  text-align: left;
  margin-bottom: 1em;
  color: #e5dfd3;
}

.page-promotions-first-deposit__process-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit__section--terms ul {
  list-style-type: disc;
  margin: 0 auto 1em auto;
  padding-left: 40px;
  max-width: 800px;
  color: #e5dfd3;
}

.page-promotions-first-deposit__section--terms ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-promotions-first-deposit__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-first-deposit__link:hover {
  color: #e5be00;
}

.page-promotions-first-deposit__section--why-ae888 {
  background-color: #2a313d;
  padding: 80px 20px;
  text-align: center;
}

.page-promotions-first-deposit__why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-first-deposit__why-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit__why-item:hover {
  transform: translateY(-5px);
}

.page-promotions-first-deposit__why-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-first-deposit__why-item h3 {
  color: #FFD700;
  margin-bottom: 0.8em;
  font-size: 1.5em;
}

.page-promotions-first-deposit__why-item p {
  color: #e5dfd3;
  font-size: 1em;
}

.page-promotions-first-deposit__section--cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, #1A202C, #3e4757);
}

.page-promotions-first-deposit__section--cta h2 {
  font-size: 2.5em;
  color: #FFD700;
}

.page-promotions-first-deposit__section--cta p {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 3em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-first-deposit__hero-content h1 {
    font-size: 2.5em;
  }

  .page-promotions-first-deposit__hero-content p {
    font-size: 1.1em;
  }

  .page-promotions-first-deposit h2 {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit h3 {
    font-size: 1.4em;
  }

  .page-promotions-first-deposit__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-first-deposit__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions-first-deposit__btn--huge {
    padding: 20px 40px;
    font-size: 1.3em;
  }

  .page-promotions-first-deposit__section {
    padding: 40px 15px;
  }

  .page-promotions-first-deposit__section--details {
    grid-template-columns: 1fr;
  }

  .page-promotions-first-deposit__section--how-to-claim ol li {
    padding-left: 60px;
  }

  .page-promotions-first-deposit__section--how-to-claim ol li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-promotions-first-deposit__why-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit__hero-content h1 {
    font-size: 2em;
  }

  .page-promotions-first-deposit__hero-content p {
    font-size: 1em;
  }

  .page-promotions-first-deposit h2 {
    font-size: 1.6em;
  }

  .page-promotions-first-deposit__btn--huge {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}