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

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

.page-promotions-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3E5C 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__hero-title .highlight {
  color: #FFFFFF;
}

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #F0F0F0;
  position: relative;
  z-index: 1;
}

.page-promotions-deposit-bonus__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-promotions-deposit-bonus__hero-button:hover {
  background-color: #E6C200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__hero-button i {
  margin-left: 10px;
}

.page-promotions-deposit-bonus__content-section {
  padding: 60px 0;
  background-color: #1A3E5C; /* Slightly lighter dark blue for content sections */
  color: #E0E0E0;
}

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

.page-promotions-deposit-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-deposit-bonus__sub-section-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-deposit-bonus__content-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-promotions-deposit-bonus__content-section ul,
.page-promotions-deposit-bonus__content-section ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__content-section ol {
  list-style-type: decimal;
}

.page-promotions-deposit-bonus__content-section li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-deposit-bonus__promo-card {
  background-color: #0A2239;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

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

.page-promotions-deposit-bonus__promo-card-button {
  display: inline-block;
  background-color: #0A2239;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-promotions-deposit-bonus__promo-card-button:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-promotions-deposit-bonus__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

.page-promotions-deposit-bonus__steps-list {
  list-style-type: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.page-promotions-deposit-bonus__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1em;
}

.page-promotions-deposit-bonus__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2239;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-deposit-bonus__steps-list li a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-deposit-bonus__steps-list li a:hover {
  color: #E6C200;
}

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

.page-promotions-deposit-bonus__tips-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-promotions-deposit-bonus__tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.3em;
}

.page-promotions-deposit-bonus__cta-block {
  background-color: #0A2239;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__cta-block p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-promotions-deposit-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-deposit-bonus__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-deposit-bonus__cta-button--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-deposit-bonus__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

  .page-promotions-deposit-bonus__sub-section-title {
    font-size: 1.5em;
  }

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

  .page-promotions-deposit-bonus__cta-block p {
    font-size: 1em;
  }

  .page-promotions-deposit-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-deposit-bonus__cta-button {
    width: 100%;
  }

  .page-promotions-deposit-bonus__promo-card {
    padding: 20px;
  }

  .page-promotions-deposit-bonus__content-section p,
  .page-promotions-deposit-bonus__content-section li {
    font-size: 0.95em;
  }
}

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

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

  .page-promotions-deposit-bonus__hero-section {
    padding: 60px 0;
  }

  .page-promotions-deposit-bonus__content-section {
    padding: 30px 0;
  }
}