/* style/promo.css */

/* Base styles for the promo page */
.page-promo {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body Background */
  line-height: 1.6;
}

.page-promo__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promo__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #F2C14E; /* Primary Color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promo__section-title--light {
  color: #FFF6D6;
}

.page-promo__section-intro,
.page-promo__description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__description--light {
  color: #FFF6D6;
}

.page-promo h3 {
  font-size: 1.8em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-promo p {
  font-size: 1em;
  color: #FFF6D6;
  margin-bottom: 1em;
}

/* Buttons */
.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promo__cta-buttons--center {
  margin-left: auto;
  margin-right: auto;
}

.page-promo__btn-primary,
.page-promo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for contrast on light gradient */
  border: 2px solid transparent;
}

.page-promo__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

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

.page-promo__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-link {
  color: #FFD36B;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__btn-link:hover {
  color: #F2C14E;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles padding-top, use small top padding */
  overflow: hidden;
}

.page-promo__hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
  overflow: hidden;
}

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

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly for visual effect, but not over video */
  background: rgba(17, 17, 17, 0.85); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border color */
}

.page-promo__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Clamp for responsive H1 */
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Why Choose Us Section */
.page-promo__why-choose-us {
  background-color: #111111;
}

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

.page-promo__feature-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(242, 193, 78, 0.3);
}

.page-promo__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promo__feature-title {
  color: #FFD36B;
  font-size: 1.5em;
}

.page-promo__feature-text {
  color: #FFF6D6;
}

/* Explore Promotions Section */
.page-promo__explore-promos {
  background-color: #0A0A0A;
}

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

.page-promo__promo-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.3);
}

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

.page-promo__promo-title {
  color: #FFD36B;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo__promo-description {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* How to Claim Section */
.page-promo__how-to-claim {
  background-color: #111111;
}

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

.page-promo__step-card {
  background: rgba(255, 255, 255, 0.05); /* Lighter transparent */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-promo__step-title {
  color: #FFD36B;
  font-size: 1.6em;
}

.page-promo__step-text {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* Featured Games Section */
.page-promo__featured-games {
  background-color: #0A0A0A;
}

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

.page-promo__game-card {
  display: block;
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.3);
}

.page-promo__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promo__game-title {
  color: #FFD36B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo__game-text {
  color: #FFF6D6;
  font-size: 0.9em;
}

/* Commitment Section */
.page-promo__commitment {
  background-color: #111111;
}

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

.page-promo__commitment-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promo__commitment-title {
  color: #FFD36B;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promo__commitment-text {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* App Download Section */
.page-promo__app-download {
  background-color: #0A0A0A;
}

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

.page-promo__app-image {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.page-promo__app-info {
  text-align: center;
  max-width: 600px;
}

.page-promo__app-title {
  color: #F2C14E;
  font-size: 2em;
  margin-bottom: 15px;
}

.page-promo__app-description {
  color: #FFF6D6;
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-promo__faq {
  background-color: #111111;
}

.page-promo__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promo__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: rgba(242, 193, 78, 0.1); /* Light transparent primary color */
  color: #F2C14E;
  font-weight: bold;
  font-size: 1.2em;
  transition: background 0.3s ease;
}

.page-promo__faq-question:hover {
  background: rgba(242, 193, 78, 0.2);
}

.page-promo__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1.2em;
}

.page-promo__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(0deg); /* No rotation for - */
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 1em;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

.page-promo__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-promo__final-cta {
  background-color: #F2C14E; /* Primary color background */
  padding: 80px 20px;
}

.page-promo__final-cta .page-promo__section-title {
  color: #0A0A0A;
}

.page-promo__final-cta .page-promo__description {
  color: #111111;
}

.page-promo__final-cta .page-promo__btn-primary {
  background: #0A0A0A;
  color: #FFF6D6;
}

.page-promo__final-cta .page-promo__btn-primary:hover {
  background: #111111;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.page-promo__final-cta .page-promo__btn-secondary {
  background: transparent;
  color: #0A0A0A;
  border-color: #0A0A0A;
}

.page-promo__final-cta .page-promo__btn-secondary:hover {
  background: #0A0A0A;
  color: #FFF6D6;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-promo__app-cta {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
  .page-promo__app-info {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promo__section {
    padding: 40px 10px;
  }

  .page-promo__container {
    padding: 0 10px;
  }

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

  .page-promo h3 {
    font-size: 1.4em;
  }

  .page-promo p {
    font-size: 0.95em;
  }

  .page-promo__hero-content {
    margin-top: -80px;
    padding: 20px 15px;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Mobile image responsiveness */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promo__section,
  .page-promo__card,
  .page-promo__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promo__hero-section {
    padding-top: 10px !important;
  }

  .page-promo__hero-video-wrapper {
    padding-bottom: 75%; /* Adjust for mobile video aspect ratio if needed */
  }

  .page-promo__faq-question,
  .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__app-image {
    width: 200px;
    height: 200px;
  }

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

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