.page-promotions-first-deposit-bonus {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A002E; /* Darker background for contrast with #4B0082 */
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #4B0082 0%, #6A0DAD 100%); /* Deeper purple gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-content {
  z-index: 10;
  max-width: 900px;
  margin-bottom: 40px;
}

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

.page-promotions-first-deposit-bonus__hero-subtitle {
  font-size: 1.3em;
  color: #F0F0F0; /* Lighter text for subtitle */
  margin-bottom: 30px;
  font-weight: 300;
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 400px; /* Example size */
  height: 400px; /* Example size */
  opacity: 0.2; /* Subtle background image */
  z-index: 5;
  pointer-events: none;
}

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.page-promotions-first-deposit-bonus__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #4B0082; /* Purple text on gold */
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
  background-color: #E0B500; /* Darker gold on hover */
  border-color: #E0B500;
}

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

.page-promotions-first-deposit-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082;
}

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

.page-promotions-first-deposit-bonus__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
  background-color: #1A002E; /* Consistent dark background */
}

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
  background-color: #2B004D; /* Slightly different dark shade for alternate sections */
}

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

.page-promotions-first-deposit-bonus__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-first-deposit-bonus__highlight-text {
  color: #FFD700;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__inline-link:hover {
  text-decoration: underline;
  color: #E0B500;
}

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

.page-promotions-first-deposit-bonus__step-item {
  background-color: #4B0082; /* Primary color for step items */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus__step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: #FFD700; /* Gold background for icons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__icon-img {
  width: 50px;
  height: 50px;
  filter: invert(20%) sepia(50%) saturate(2000%) hue-rotate(240deg) brightness(50%); /* Dark purple tint for icons */
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__step-description {
  font-size: 1em;
  color: #F0F0F0;
}

.page-promotions-first-deposit-bonus__cta-block {
  background-color: #6A0DAD; /* A lighter shade of purple */
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-text {
  font-size: 1.4em;
  color: #F0F0F0;
  margin-bottom: 25px;
  font-weight: 500;
}

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

.page-promotions-first-deposit-bonus__list-item {
  background-color: #2B004D; /* Darker purple for list items */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__list-item::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

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

.page-promotions-first-deposit-bonus__feature-item {
  background-color: #4B0082;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(70%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%); /* Gold tint for icons */
}

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

.page-promotions-first-deposit-bonus__feature-description {
  font-size: 1em;
  color: #F0F0F0;
  flex-grow: 1;
}

.page-promotions-first-deposit-bonus__feature-item .page-promotions-first-deposit-bonus__btn--small {
  margin-top: 20px;
}

.page-promotions-first-deposit-bonus__accordion {
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__accordion-item {
  background-color: #2B004D;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__accordion-header {
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4B0082;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-promotions-first-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-first-deposit-bonus__accordion-content.active {
  max-height: 200px; /* Adjust as needed for content height */
  padding: 20px;
}

.page-promotions-first-deposit-bonus__accordion-content p {
  margin-bottom: 0;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-promotions-first-deposit-bonus__cta-final {
  background: linear-gradient(90deg, #4B0082, #6A0DAD); /* Gradient for final CTA */
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

  .page-promotions-first-deposit-bonus__hero-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    opacity: 0.3;
  }
  .page-promotions-first-deposit-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2em;
  }

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

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

  .page-promotions-first-deposit-bonus__btn {
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions-first-deposit-bonus__cta-text {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__hero-content {
    margin-bottom: 20px;
  }
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 60px 0;
  }
  .page-promotions-first-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-first-deposit-bonus__accordion-content {
    padding: 15px;
  }
}