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

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-promo__video-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 30px;
}

.page-promo__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

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

.page-promo__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.page-promo__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size for H1 */
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-promo__subtitle {
  font-size: 1.3em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promo__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__cta-button--secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
}

.page-promo__cta-button--secondary:hover {
  background: #FFD36B;
  color: #0A0A0A;
}

.page-promo__cta-button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-promo__cta-button--text-only {
  background: none;
  border: none;
  color: #FFD36B;
  padding: 0;
  font-size: 1em;
}

.page-promo__cta-button--text-only:hover {
  text-decoration: underline;
  background: none;
  color: #F2C14E;
}

/* Sections */
.page-promo__promotions-overview,
.page-promo__how-to-claim,
.page-promo__why-jilipark,
.page-promo__final-cta,
.page-promo__partners-section {
  padding: 60px 0;
}

.page-promo__promo-cards,
.page-promo__featured-games,
.page-promo__app-promo,
.page-promo__faq-section {
  padding: 60px 0;
}

.page-promo__dark-section {
  background-color: #111111; /* Card BG */
}

/* Promo Cards Grid */
.page-promo__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(242, 193, 78, 0.2);
}

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Claim Steps */
.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__step-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

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

/* Featured Games */
.page-promo__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-promo__game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 15px;
  padding: 20px;
  text-decoration: none;
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__game-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.page-promo__game-title {
  font-size: 1.3em;
  color: #FFD36B;
  margin-bottom: 5px;
  text-align: center;
}

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

.page-promo__button-wrapper {
  text-align: center;
}

/* Why Jilipark Features */
.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promo__feature-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promo__feature-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__feature-text {
  font-size: 0.95em;
  color: #FFF6D6;
}

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

.page-promo__app-promo-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-promo__app-text {
  flex: 1;
  min-width: 300px;
}

.page-promo__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promo__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Partners Section */
.page-promo__partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 2 rows of 5 for desktop */
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promo__partners-grid img {
  width: 100%;
   /* Specific size for game type images */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
  filter: grayscale(80%) brightness(120%);
  transition: filter 0.3s ease;
}

.page-promo__partners-grid img:hover {
  filter: grayscale(0%) brightness(100%);
}

/* FAQ Section */
.page-promo__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  color: #FFD36B; /* Glow */
  font-weight: bold;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #2a2a2a;
}

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

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

.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: 0.95em;
}

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

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

/* Final CTA */
.page-promo__final-cta {
  text-align: center;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-promo__subtitle {
    font-size: 1.1em;
  }
  .page-promo__app-promo-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__app-text,
  .page-promo__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__hero-section {
    padding-bottom: 30px;
  }
  .page-promo__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-promo__subtitle {
    font-size: 1em;
  }
  .page-promo__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promo__cta-button,
  .page-promo__cta-button--primary,
  .page-promo__cta-button--secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promo__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
  .page-promo__card,
  .page-promo__step-item,
  .page-promo__game-card,
  .page-promo__feature-item {
    padding: 20px;
  }
  .page-promo__card-image,
  .page-promo__step-image,
  .page-promo__game-image,
  .page-promo__feature-icon {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__video-section {
    padding-top: 10px !important;
  }
  .page-promo__partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 5 rows of 2 for mobile */
  }
  .page-promo__partners-grid img {
    
  }
  .page-promo__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-promo__faq-answer {
    padding: 0 20px;
  }
  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__partners-grid {
    grid-template-columns: repeat(1, 1fr); /* 10 rows of 1 for smaller mobile */
  }
  .page-promo__partners-grid img {
    
  }
}