.page-promotions-deposit-offers {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-light: #F8F8F8;
  --text-dark: #0A192F;
  --background-dark: #0A192F;
  --background-light: #F0F2F5;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--background-dark);
  line-height: 1.6;
}

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

.page-promotions-deposit-offers__section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-deposit-offers__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 60%, var(--secondary-color) 100%);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-promotions-deposit-offers__hero-content {
  max-width: 900px;
  z-index: 2;
  margin-bottom: 40px;
}

.page-promotions-deposit-offers__hero-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-deposit-offers__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-promotions-deposit-offers__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: auto;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

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

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

.page-promotions-deposit-offers__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

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

.page-promotions-deposit-offers__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions-deposit-offers__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.page-promotions-deposit-offers__btn--outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions-deposit-offers__btn--outline:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.page-promotions-deposit-offers__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions-deposit-offers__types {
  background-color: #1a2a40;
}

.page-promotions-deposit-offers__promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions-deposit-offers__promo-item:last-of-type {
  margin-bottom: 0;
}

.page-promotions-deposit-offers__promo-title {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-promotions-deposit-offers__promo-item p {
  font-size: 1.05em;
  color: var(--text-light);
  margin-bottom: 25px;
  text-align: justify;
}

.page-promotions-deposit-offers__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-offers__how-to-claim {
  background-color: var(--background-dark);
}

.page-promotions-deposit-offers__step-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
}

.page-promotions-deposit-offers__step-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions-deposit-offers__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-promotions-deposit-offers__step-list li strong {
  color: var(--secondary-color);
}

.page-promotions-deposit-offers__step-list li a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-promotions-deposit-offers__step-list li a:hover {
  color: #e6c200;
}

.page-promotions-deposit-offers__terms {
  background-color: #1a2a40;
}

.page-promotions-deposit-offers__terms p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions-deposit-offers__term-list {
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 30px;
}

.page-promotions-deposit-offers__term-list li {
  font-size: 1.05em;
  color: var(--text-light);
  margin-bottom: 10px;
  text-align: justify;
}

.page-promotions-deposit-offers__term-list li strong {
  color: var(--secondary-color);
}

.page-promotions-deposit-offers__why-choose {
  background-color: var(--background-dark);
  text-align: center;
}

.page-promotions-deposit-offers__why-choose p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions-deposit-offers__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promotions-deposit-offers__feature-item {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions-deposit-offers__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-deposit-offers__feature-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions-deposit-offers__feature-item p {
  font-size: 1em;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
}

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

.page-promotions-deposit-offers__responsible-gaming {
  background-color: #1a2a40;
  text-align: center;
}

.page-promotions-deposit-offers__responsible-gaming p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-light);
  text-align: justify;
}

.page-promotions-deposit-offers__faq {
  background-color: var(--background-dark);
}

.page-promotions-deposit-offers__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-deposit-offers__faq-item {
  background-color: var(--primary-color);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-offers__faq-question {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-promotions-deposit-offers__faq-answer {
  font-size: 1em;
  color: var(--text-light);
  display: none;
  margin-top: 15px;
  text-align: justify;
}

.page-promotions-deposit-offers__faq-answer.active {
  display: block;
}

.page-promotions-deposit-offers__final-cta {
  background: linear-gradient(45deg, var(--primary-color), #2c3e50);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-offers__final-cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.page-promotions-deposit-offers__final-cta .page-promotions-deposit-offers__section-title,
.page-promotions-deposit-offers__final-cta p,
.page-promotions-deposit-offers__final-cta .page-promotions-deposit-offers__cta-group {
  position: relative;
  z-index: 2;
}

.page-promotions-deposit-offers__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--text-light);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-deposit-offers__hero-title {
    font-size: 3em;
  }
  .page-promotions-deposit-offers__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-deposit-offers__hero-image {
    width: 60%;
  }
  .page-promotions-deposit-offers__section-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-offers__promo-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-offers__feature-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-offers__hero {
    flex-direction: column;
    padding: 60px 15px;
    min-height: auto;
  }
  .page-promotions-deposit-offers__hero-content {
    margin-bottom: 30px;
  }
  .page-promotions-deposit-offers__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-deposit-offers__hero-description {
    font-size: 1em;
  }
  .page-promotions-deposit-offers__hero-image {
    position: static;
    width: 80%;
    margin-top: 30px;
    opacity: 1;
  }
  .page-promotions-deposit-offers__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-deposit-offers__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-deposit-offers__section {
    padding: 40px 15px;
  }
  .page-promotions-deposit-offers__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-deposit-offers__promo-item {
    padding: 20px;
    margin-bottom: 40px;
  }
  .page-promotions-deposit-offers__promo-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-offers__step-list li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-promotions-deposit-offers__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-promotions-deposit-offers__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-offers__feature-title {
    font-size: 1.4em;
  }
  .page-promotions-deposit-offers__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-deposit-offers__final-cta p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-offers__hero-title {
    font-size: 2em;
  }
  .page-promotions-deposit-offers__section-title {
    font-size: 1.6em;
  }
  .page-promotions-deposit-offers__promo-title {
    font-size: 1.3em;
  }
  .page-promotions-deposit-offers__feature-title {
    font-size: 1.2em;
  }
  .page-promotions-deposit-offers__faq-question {
    font-size: 1em;
  }
}