.page-promotions-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A203C; /* Main dark background */
}

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

.page-promotions-deposit-bonus__hero {
  background: linear-gradient(135deg, #0A203C 0%, #1A3A5E 70%, #FFD700 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-bonus__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0; /* Slightly lighter grey for subtitles */
  margin-bottom: 40px;
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-promotions-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

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

.page-promotions-deposit-bonus__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #0A203C; /* Dark text on gold background */
}

.page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn--secondary {
  background-color: #1A3A5E; /* Darker blue for secondary actions */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: #2A4F7C;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A203C;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  background-color: #0A203C;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
  background-color: #122B4A;
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-deposit-bonus__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-deposit-bonus__text strong {
  color: #FFD700;
}

.page-promotions-deposit-bonus__article {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #1A3A5E;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__article-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-promotions-deposit-bonus__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-deposit-bonus__list li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__list--styled {
  list-style-type: none;
  padding-left: 0;
}

.page-promotions-deposit-bonus__list--styled li {
  position: relative;
  padding-left: 30px;
}

.page-promotions-deposit-bonus__list--styled li::before {
  content: '⚡'; /* Unicode lightning bolt or similar icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

.page-promotions-deposit-bonus__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-deposit-bonus__step {
  background-color: #1A3A5E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-deposit-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  background-color: #0A203C;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__benefit-item {
  background-color: #1A3A5E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions-deposit-bonus__benefit-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
  flex-grow: 1;
}

.page-promotions-deposit-bonus__icon {
  width: 60px;
  height: 60px;
  margin-top: 20px;
  object-fit: contain;
}

.page-promotions-deposit-bonus__faq-item {
  background-color: #1A3A5E;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-deposit-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-deposit-bonus__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-promotions-deposit-bonus__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 10px;
}

.page-promotions-deposit-bonus__section--cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(90deg, #0A203C, #1A3A5E);
}

.page-promotions-deposit-bonus__image-row {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.page-promotions-deposit-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }

  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.3em;
  }

  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-deposit-bonus__article-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero {
    padding: 60px 0;
  }

  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-deposit-bonus__text,
  .page-promotions-deposit-bonus__list li,
  .page-promotions-deposit-bonus__step-description,
  .page-promotions-deposit-bonus__benefit-description,
  .page-promotions-deposit-bonus__faq-answer {
    font-size: 0.95em;
  }

  .page-promotions-deposit-bonus__steps-wrapper,
  .page-promotions-deposit-bonus__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-deposit-bonus__step,
  .page-promotions-deposit-bonus__benefit-item {
    padding: 20px;
  }

  .page-promotions-deposit-bonus__faq-item {
    padding: 15px;
  }

  .page-promotions-deposit-bonus__faq-question {
    font-size: 1.1em;
  }
}