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

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

.page-promotions-deposit-bonus__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%); /* Dark blue gradient */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

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

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-promotions-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
  background-color: #1A2C4A; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-promotions-deposit-bonus__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #D0D0D0; /* Lighter grey for paragraph text */
}

.page-promotions-deposit-bonus__text--centered {
  text-align: center;
}

.page-promotions-deposit-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promotions-deposit-bonus__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1A3A; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

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

.page-promotions-deposit-bonus__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1A3A;
  transform: translateY(-3px);
}

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

.page-promotions-deposit-bonus__inline-link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__inline-link:hover {
  color: #e6c200;
}

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

.page-promotions-deposit-bonus__grid-item {
  background-color: #0A1A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #FFD700;
}

.page-promotions-deposit-bonus__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions-deposit-bonus__list li {
  background-color: #1A2C4A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-promotions-deposit-bonus__list-title {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 5px;
}

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

.page-promotions-deposit-bonus__step-item {
  background-color: #0A1A3A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #FFD700;
}

.page-promotions-deposit-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A1A3A;
  border-radius: 50%;
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

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

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

.page-promotions-deposit-bonus__why-item {
  background-color: #1A2C4A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #0A1A3A;
}

.page-promotions-deposit-bonus__why-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

.page-promotions-deposit-bonus__accordion {
  margin-top: 40px;
  text-align: left;
}

.page-promotions-deposit-bonus__accordion-item {
  background-color: #0A1A3A;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-deposit-bonus__accordion-header {
  padding: 20px;
  background-color: #1A2C4A;
  color: #FFD700;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header:hover {
  background-color: #2A3C5A;
}

.page-promotions-deposit-bonus__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-deposit-bonus__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-deposit-bonus__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-promotions-deposit-bonus__cta {
  background-color: #FFD700; /* Gold background for CTA */
  padding: 80px 20px;
  text-align: center;
  color: #0A1A3A; /* Dark blue text on gold */
}

.page-promotions-deposit-bonus__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A1A3A;
}

.page-promotions-deposit-bonus__cta-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333333;
}

.page-promotions-deposit-bonus__cta .page-promotions-deposit-bonus__btn--primary {
  background-color: #0A1A3A; /* Dark blue button on gold CTA */
  color: #FFD700;
  border-color: #0A1A3A;
}

.page-promotions-deposit-bonus__cta .page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #1A2C4A;
  color: #FFD700;
}

.highlight {
  color: #FFD700;
}

.page-promotions-deposit-bonus__cta .highlight {
  color: #0A1A3A;
}

/* 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: 2.2em;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero {
    padding: 60px 15px;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    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__accordion-header,
  .page-promotions-deposit-bonus__btn {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__cta-subtitle {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__grid,
  .page-promotions-deposit-bonus__steps,
  .page-promotions-deposit-bonus__why-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-bonus__btn {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .page-promotions-deposit-bonus__hero-content .page-promotions-deposit-bonus__btn:first-child {
    margin-top: 0;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__cta-subtitle {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}