.page-promo-deposit-offers {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text on dark body background */
  background-color: #0A192F; /* Inherited from body, but good to specify for containers if needed */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo-deposit-offers__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E90FF, #0A192F);
  overflow: hidden;
  position: relative;
}

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

.page-promo-deposit-offers__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo-deposit-offers__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-deposit-offers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo-deposit-offers__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
}

.page-promo-deposit-offers__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promo-deposit-offers__button--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

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

.page-promo-deposit-offers__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo-deposit-offers__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-promo-deposit-offers__overview-section,
.page-promo-deposit-offers__offers-list-section,
.page-promo-deposit-offers__how-to-claim-section,
.page-promo-deposit-offers__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.page-promo-deposit-offers__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promo-deposit-offers__section-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-promo-deposit-offers__benefit-card {
  background-color: rgba(30, 144, 255, 0.15); /* Semi-transparent secondary color */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promo-deposit-offers__benefit-card:hover {
  transform: translateY(-10px);
}

.page-promo-deposit-offers__benefit-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo-deposit-offers__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-promo-deposit-offers__cta {
  margin-top: 60px;
}

.page-promo-deposit-offers__offers-list-section {
  background-color: rgba(30, 144, 255, 0.05);
  border-radius: 20px;
  margin-top: 40px;
  padding-bottom: 80px;
}

.page-promo-deposit-offers__offer-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-promo-deposit-offers__offer-card:hover {
  transform: translateY(-5px);
}

.page-promo-deposit-offers__offer-card img {
  width: 100%;
  height: auto;
  display: block;
}

.page-promo-deposit-offers__offer-details {
  padding: 30px;
}

.page-promo-deposit-offers__offer-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo-deposit-offers__offer-text {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-promo-deposit-offers__offer-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo-deposit-offers__offer-features li {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promo-deposit-offers__offer-features li::before {
  content: '✓';
  color: #1E90FF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promo-deposit-offers__how-to-claim-section {
  background-color: #0A192F;
}

.page-promo-deposit-offers__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-promo-deposit-offers__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo-deposit-offers__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo-deposit-offers__step-text {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-promo-deposit-offers__step-text a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-deposit-offers__step-text a:hover {
  text-decoration: underline;
}

.page-promo-deposit-offers__faq-section {
  background-color: rgba(30, 144, 255, 0.05);
  border-radius: 20px;
  margin-top: 40px;
}

.page-promo-deposit-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promo-deposit-offers__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promo-deposit-offers__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  display: block; /* Initially visible for static page */
}

.page-promo-deposit-offers__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-deposit-offers__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-deposit-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promo-deposit-offers__section-title {
    font-size: 2.4em;
  }
  .page-promo-deposit-offers__offer-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promo-deposit-offers__hero-section {
    padding: 40px 15px;
  }
  .page-promo-deposit-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promo-deposit-offers__hero-description {
    font-size: 1em;
  }
  .page-promo-deposit-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-deposit-offers__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }
  .page-promo-deposit-offers__overview-section,
  .page-promo-deposit-offers__offers-list-section,
  .page-promo-deposit-offers__how-to-claim-section,
  .page-promo-deposit-offers__faq-section {
    padding: 50px 15px;
  }
  .page-promo-deposit-offers__section-title {
    font-size: 2em;
  }
  .page-promo-deposit-offers__section-description {
    font-size: 0.95em;
  }
  .page-promo-deposit-offers__offer-card {
    flex-direction: column;
  }
  .page-promo-deposit-offers__offer-card img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-deposit-offers__offer-title {
    font-size: 1.6em;
  }
  .page-promo-deposit-offers__offer-text {
    font-size: 0.95em;
  }
  .page-promo-deposit-offers__benefit-card img,
  .page-promo-deposit-offers__offer-card img,
  .page-promo-deposit-offers__hero-image img {
    max-width: 100%;
    height: auto;
    /* Enforce minimum display size for content images */
    min-width: 200px;
    min-height: 200px;
  }
  .page-promo-deposit-offers img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo-deposit-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promo-deposit-offers__section-title {
    font-size: 1.8em;
  }
  .page-promo-deposit-offers__offer-title {
    font-size: 1.4em;
  }
  .page-promo-deposit-offers__step-title,
  .page-promo-deposit-offers__faq-question {
    font-size: 1.3em;
  }
  .page-promo-deposit-offers__hero-actions {
    flex-direction: column;
  }
  .page-promo-deposit-offers__button {
    width: 100%;
  }
}