/* style/promo.css */
.page-promo {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF;
}

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

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  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__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-promo__button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.page-promo__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__button--login:hover {
  background-color: #E0A83A;
  border-color: #E0A83A;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--small:hover {
  background-color: #E0A83A;
  border-color: #E0A83A;
  transform: translateY(-1px);
}

.page-promo__button--large {
  padding: 16px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--large:hover {
  background-color: #E0A83A;
  border-color: #E0A83A;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__button--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.page-promo__button--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__button--download:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  color: #FFFFFF;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-promo__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-promo__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-actions .page-promo__button {
  margin: 0 15px;
}

/* Why Section */
.page-promo__why-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-promo__feature-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promo__feature-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

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

/* Bonus Types Section */
.page-promo__types-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo__bonus-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-promo__bonus-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-promo__bonus-card h3,
.page-promo__bonus-card p,
.page-promo__bonus-card .page-promo__button {
  padding: 0 25px;
}

.page-promo__bonus-title {
  font-size: 1.6em;
  color: #000000;
  margin: 25px 0 15px 0;
}

.page-promo__bonus-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promo__bonus-card .page-promo__button {
  margin-bottom: 25px;
  align-self: flex-start;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-promo__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__step-number {
  font-size: 3.5em;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 0;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.page-promo__step-card .page-promo__button {
  margin-top: auto;
  align-self: center;
}

/* Featured Promotions Section */
.page-promo__featured-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo__featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

.page-promo__featured-card {
  display: flex;
  align-items: center;
  background-color: #F8F8F8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo__featured-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promo__featured-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  filter: none; /* Ensure no CSS filter is applied */
}

.page-promo__featured-content {
  width: 50%;
  padding: 40px;
}

.page-promo__featured-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promo__featured-description {
  font-size: 1.05em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Terms Section */
.page-promo__terms-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

.page-promo__terms-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
}

.page-promo__terms-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 5px;
  display: inline-block;
}

.page-promo__terms-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-promo__terms-content .page-promo__button {
  margin-top: 30px;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
  background-color: #FFFFFF;
}

.page-promo__responsible-gaming-section .page-promo__button {
  margin-top: 30px;
}

/* App Promo Section */
.page-promo__app-promo-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

.page-promo__app-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.page-promo__app-image {
  width: 600px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none; /* Ensure no CSS filter is applied */
}

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

.page-promo__faq-list {
  margin-top: 50px;
}

.page-promo__faq-item {
  background-color: #F8F8F8;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px 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;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 300px; /* Adjust based on expected content length */
  margin-top: 15px;
}

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

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

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

.page-promo__cta-section .page-promo__section-intro {
  color: #F0F0F0;
}

.page-promo__cta-section .page-promo__button {
  margin-top: 40px;
}

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

  .page-promo__hero-description {
    font-size: 1.2em;
  }

  .page-promo__featured-card {
    flex-direction: column;
  }

  .page-promo__featured-card:nth-child(even) {
    flex-direction: column;
  }

  .page-promo__featured-image,
  .page-promo__featured-content {
    width: 100%;
  }

  .page-promo__featured-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-promo__section-title {
    font-size: 2.2em;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__hero-actions .page-promo__button {
    margin: 10px 5px;
    display: block;
    width: calc(100% - 20px);
  }

  .page-promo__features-grid,
  .page-promo__bonus-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__feature-icon {
    width: 200px;
    height: 150px;
  }

  .page-promo__featured-content {
    padding: 30px;
  }

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

  .page-promo__terms-content {
    padding: 30px;
  }

  .page-promo__terms-subtitle {
    font-size: 1.5em;
  }

  .page-promo__app-image {
    width: 100%;
    height: auto;
  }

  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }
}

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

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

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-promo__featured-content {
    padding: 20px;
  }

  .page-promo__featured-title {
    font-size: 1.5em;
  }

  .page-promo__faq-question {
    font-size: 1.2em;
  }
}