/* style/promo.css */
.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promo__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promo__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Fallback background */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text contrast */
}

.page-promo__hero-container {
  position: relative;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  width: 90%;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FCBC45; /* Highlight title with login button color */
}

.page-promo__hero-description {
  font-size: 1.5em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promo__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Prevent button text from wrapping */
}

.page-promo__btn--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__btn--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-promo__btn--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__btn--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-promo__btn--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo__btn--secondary:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.page-promo__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promo__introduction-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-promo__types-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo__promo-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 20px;
  text-align: left;
}

.page-promo__promo-card .page-promo__btn {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__promo-card .page-promo__btn:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-promo__maximizing-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promo__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

.page-promo__list--checkmarks {
  list-style: none;
  padding-left: 0;
}

.page-promo__list--checkmarks .page-promo__list-item {
  position: relative;
  padding-left: 30px;
}

.page-promo__list--checkmarks .page-promo__list-item::before {
  content: '✔'; /* Checkmark icon */
  color: #FCBC45;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promo__claiming-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo__step-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
}

.page-promo__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
}

.page-promo__claiming-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo__responsible-gaming-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-promo__why-choose-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo__latest-offers-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo__detail-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promo__detail-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-promo__detail-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promo__detail-title a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__detail-title a:hover {
  color: #FCBC45;
}

.page-promo__detail-description {
  font-size: 1.05em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #FCBC45;
}

.page-promo__faq-answer {
  font-size: 1.0em;
  color: #555555;
  display: none; /* Hidden by default */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  display: block;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

.page-promo__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #FCBC45;
}

.page-promo__cta-section .page-promo__text-content {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promo__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.3em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-promo__hero-content {
    width: 95%;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-promo__sub-title {
    font-size: 1.5em;
  }
  .page-promo__text-content, .page-promo__list-item, .page-promo__card-description, .page-promo__step-description, .page-promo__detail-description, .page-promo__faq-answer {
    font-size: 1em;
  }
  .page-promo__promo-grid, .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image, .page-promo__step-image {
    height: 200px;
  }
  /* Ensure content images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__detail-title {
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
  }
}