/* style/promotions-deposit-offers.css */
.page-promotions-deposit-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body or set explicitly for consistency */
}

.page-promotions-deposit-offers__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-deposit-offers__link:hover {
  color: #fff;
}

.page-promotions-deposit-offers__dark-bg {
  background-color: #8B0000; /* Auxiliary color for dark sections */
  color: #ffffff;
}

.page-promotions-deposit-offers__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-deposit-offers__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-promotions-deposit-offers__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.page-promotions-deposit-offers__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-deposit-offers__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-promotions-deposit-offers__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-deposit-offers__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-promotions-deposit-offers__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.page-promotions-deposit-offers__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Red underline */
  border-radius: 2px;
}

.page-promotions-deposit-offers__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-deposit-offers__offer-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-deposit-offers__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-deposit-offers__offer-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark red for offer titles */
  margin: 0 15px 15px;
}

.page-promotions-deposit-offers__offer-text {
  color: #555555;
  padding: 0 15px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-deposit-offers__btn-primary,
.page-promotions-deposit-offers__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-promotions-deposit-offers__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  border: 2px solid #FFD700;
}

.page-promotions-deposit-offers__btn-primary:hover {
  background-color: #e6c200;
  color: #8B0000;
}

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

.page-promotions-deposit-offers__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promotions-deposit-offers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-deposit-offers__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

.page-promotions-deposit-offers__how-to-claim {
  padding: 80px 0;
}

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

.page-promotions-deposit-offers__guide-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-promotions-deposit-offers__guide-icon {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-promotions-deposit-offers__guide-text {
  color: #f0f0f0;
  font-size: 0.95em;
}

.page-promotions-deposit-offers__guide-image {
  display: block;
  margin: 50px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-promotions-deposit-offers__terms-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
}

.page-promotions-deposit-offers__terms-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.05em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-promotions-deposit-offers__why-choose {
  padding: 80px 0;
}

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

.page-promotions-deposit-offers__benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.page-promotions-deposit-offers__benefit-text {
  color: #f0f0f0;
}

.page-promotions-deposit-offers__benefits-image {
  display: block;
  margin: 50px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-promotions-deposit-offers__faq-section {
  padding-bottom: 80px;
}

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

.page-promotions-deposit-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-promotions-deposit-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Auxiliary color for question background */
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-offers__faq-question:hover {
  background-color: #a00000;
}

.page-promotions-deposit-offers__faq-question-text {
  margin: 0;
  color: #ffffff;
}

.page-promotions-deposit-offers__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-deposit-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.02);
}

.page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-promotions-deposit-offers__faq-answer-text {
  color: #f0f0f0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-deposit-offers__final-cta {
  padding: 80px 20px;
  text-align: center;
}

.page-promotions-deposit-offers__final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-deposit-offers__final-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-promotions-deposit-offers__final-cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-deposit-offers__hero-title {
    font-size: 3em;
  }
  .page-promotions-deposit-offers__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-offers__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-offers {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-deposit-offers__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset for mobile */
  }

  .page-promotions-deposit-offers__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-deposit-offers__hero-description {
    font-size: 1em;
  }

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

  .page-promotions-deposit-offers__btn-primary,
  .page-promotions-deposit-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-promotions-deposit-offers__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions-deposit-offers__section-description {
    font-size: 0.95em;
  }

  .page-promotions-deposit-offers__offer-grid,
  .page-promotions-deposit-offers__guide-steps,
  .page-promotions-deposit-offers__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-deposit-offers__offer-image,
  .page-promotions-deposit-offers__guide-image,
  .page-promotions-deposit-offers__benefits-image,
  .page-promotions-deposit-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-deposit-offers__offer-card,
  .page-promotions-deposit-offers__guide-item,
  .page-promotions-deposit-offers__benefit-item,
  .page-promotions-deposit-offers__faq-item,
  .page-promotions-deposit-offers__faq-container,
  .page-promotions-deposit-offers__final-cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-deposit-offers__offer-card {
    margin-left: 0;
    margin-right: 0;
  }

  .page-promotions-deposit-offers__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-deposit-offers__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-deposit-offers__faq-item.active .page-promotions-deposit-offers__faq-answer {
    padding: 15px 20px;
  }

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

  .page-promotions-deposit-offers__final-cta-description {
    font-size: 1em;
  }
}