/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0F1D2E; /* Slightly lighter than main for contrast */
}

.page-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2E47 0%, #0F1D2E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

.page-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__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__section-description {
  font-size: 1.1em;
  color: #A0A0A0;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__content-wrapper p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: left;
}

.page-promotions__content-wrapper {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__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;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

.page-promotions__offer-card {
  background-color: #1A2E47;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-promotions__offer-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 25px 10px;
}

.page-promotions__offer-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-promotions__offer-card .page-promotions__btn {
  margin: 0 25px 25px 25px;
  width: calc(100% - 50px);
  text-align: center;
}

.page-promotions__offer-card .page-promotions__btn--secondary {
  margin-bottom: 10px;
}

.page-promotions__how-to-claim {
  background-color: #0F1D2E;
}

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

.page-promotions__step-card {
  background-color: #1A2E47;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.page-promotions__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A2E47;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0F1D2E;
}

.page-promotions__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-promotions__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-bottom {
  margin-top: 60px;
}

.page-promotions__responsible-gambling {
  background-color: #1A2E47;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__faq {
  padding-bottom: 80px;
}

.page-promotions__faq-item {
  background-color: #1A2E47;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

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

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

.page-promotions__faq-question.active + .page-promotions__faq-answer {
  display: block;
}

.page-promotions__final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #1A2E47;
  border-top: 5px solid #FFD700;
}

.page-promotions__final-cta a {
  margin-top: 30px;
}

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

  .page-promotions__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__offers-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions__offer-card .page-promotions__btn {
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions__offer-card .page-promotions__btn--secondary {
    margin-bottom: 10px;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}