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

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

.page-promotions-first-deposit__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Darker gradient for hero */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-first-deposit__hero-subtitle {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-first-deposit__section:last-of-type {
  border-bottom: none;
}

.page-promotions-first-deposit__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-first-deposit__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-first-deposit__section p {
  font-size: 1.1em;
  color: #e5dfd3;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-first-deposit__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-promotions-first-deposit__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-promotions-first-deposit__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__btn--secondary {
  background-color: #4CAF50; /* Green accent button */
  color: #ffffff;
  margin-top: 20px;
}

.page-promotions-first-deposit__btn--secondary:hover {
  background-color: #45a049;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

.page-promotions-first-deposit__card {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  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__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit__card-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

.page-promotions-first-deposit__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-first-deposit__list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #e5dfd3;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__list li::before {
  content: '✔';
  color: #4CAF50; /* Green checkmark */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-promotions-first-deposit__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions-first-deposit__steps li {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  color: #e5dfd3;
  font-size: 1.1em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFD700;
  color: #1A202C;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  min-width: 35px; /* Ensure it doesn't shrink */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  font-size: 1.2em;
}

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

.page-promotions-first-deposit__term-item {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__term-title {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

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

.page-promotions-first-deposit__image-center {
  display: block;
  margin: 40px auto;
  max-width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit__image-left {
  float: left;
  margin: 0 30px 20px 0;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit__image-right {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit__section--tips::after,
.page-promotions-first-deposit__section--claim::after {
  content: '';
  display: block;
  clear: both;
}

.page-promotions-first-deposit__faq-item {
  background-color: #2D3748;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-first-deposit__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
}

.page-promotions-first-deposit__faq-question.active::after {
  content: '-';
}

.page-promotions-first-deposit__faq-answer {
  color: #e5dfd3;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.page-promotions-first-deposit__faq-answer.active {
  display: block;
}

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

.page-promotions-first-deposit__section--cta .page-promotions-first-deposit__section-title {
  color: #FFD700;
}

.page-promotions-first-deposit__section--cta p {
  color: #ffffff;
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit__grid,
  .page-promotions-first-deposit__terms-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit__image-left,
  .page-promotions-first-deposit__image-right {
    float: none;
    margin: 30px auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 1.8em;
  }
  .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__list li,
  .page-promotions-first-deposit__steps li,
  .page-promotions-first-deposit__card p,
  .page-promotions-first-deposit__term-item p,
  .page-promotions-first-deposit__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit__list li,
  .page-promotions-first-deposit__steps li {
    padding: 15px;
  }
  .page-promotions-first-deposit__card,
  .page-promotions-first-deposit__term-item,
  .page-promotions-first-deposit__faq-item {
    padding: 20px;
  }
  .page-promotions-first-deposit__image-center {
    max-width: 95%;
  }
}