/* style/promo.css */
:root {
  --niceph-primary: #F2C14E;
  --niceph-secondary: #FFD36B;
  --niceph-card-bg: #111111;
  --niceph-background: #0A0A0A;
  --niceph-text-main: #FFF6D6;
  --niceph-border: #3A2A12;
  --niceph-glow: #FFD36B;
  --niceph-btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-promo {
  font-family: 'Arial', sans-serif;
  color: var(--niceph-text-main); /* Light text for dark body background */
  background-color: var(--niceph-background);
  line-height: 1.6;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: var(--niceph-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-promo__hero-content-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: 40px; /* Space below content before next section */
}

.page-promo__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure hero image is large */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promo__hero-text-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--niceph-secondary);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promo__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-promo__section {
  padding: 60px 0;
  border-top: 1px solid var(--niceph-border);
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: var(--niceph-primary);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--niceph-text-main);
}

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

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

.page-promo__btn-primary {
  background: var(--niceph-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

.page-promo__btn-secondary {
  background: var(--niceph-card-bg);
  color: var(--niceph-primary);
  border: 2px solid var(--niceph-primary);
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.2);
}

.page-promo__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--niceph-primary);
  color: var(--niceph-card-bg);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.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: var(--niceph-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--niceph-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

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

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: var(--niceph-secondary);
  margin-bottom: 15px;
}

.page-promo__promo-card-text {
  font-size: 1em;
  color: var(--niceph-text-main);
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promo__promo-item {
  background-color: var(--niceph-card-bg);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--niceph-border);
}

.page-promo__promo-item-icon img {
  
  
  object-fit: contain;
  min-
  min-
}

.page-promo__promo-item-content {
  flex-grow: 1;
}

.page-promo__promo-item-title {
  font-size: 1.4em;
  color: var(--niceph-primary);
  margin-bottom: 5px;
}

.page-promo__promo-item-text {
  font-size: 0.95em;
  color: var(--niceph-text-main);
}

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

.page-promo__vip-feature-item {
  background-color: var(--niceph-card-bg);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--niceph-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-feature-title {
  font-size: 1.5em;
  color: var(--niceph-secondary);
  margin-bottom: 10px;
}

.page-promo__vip-feature-text {
  color: var(--niceph-text-main);
}

.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: var(--niceph-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--niceph-border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promo__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--niceph-btn-gradient);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: 2px solid var(--niceph-card-bg);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: var(--niceph-primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-promo__step-text {
  font-size: 1em;
  color: var(--niceph-text-main);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__game-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promo__category-card {
  background-color: var(--niceph-card-bg);
  border-radius: 10px;
  padding: 15px 25px;
  text-decoration: none;
  color: var(--niceph-text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--niceph-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promo__category-card:hover {
  background-color: rgba(242, 193, 78, 0.1);
  border-color: var(--niceph-primary);
}

.page-promo__category-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.page-promo__category-name {
  font-size: 1.1em;
  font-weight: 600;
}

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

.page-promo__faq-item {
  background-color: var(--niceph-card-bg);
  border: 1px solid var(--niceph-border);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--niceph-primary);
  font-size: 1.2em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-promo__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  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: var(--niceph-text-main);
}

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

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

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

.page-promo__feature-item {
  background-color: var(--niceph-card-bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--niceph-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 80px;
  min-height: 80px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: var(--niceph-secondary);
  margin-bottom: 10px;
}

.page-promo__feature-text {
  color: var(--niceph-text-main);
}

.page-promo__expandable-content {
  max-height: none; /* Default expanded */
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding-top: 40px;
  border-top: 1px solid var(--niceph-border);
}

.page-promo__expandable-content.collapsed {
  max-height: 200px; /* Adjust as needed for initial collapsed height */
}

.page-promo__info-text {
  margin-bottom: 20px;
  color: var(--niceph-text-main);
  text-align: justify;
}

.page-promo__load-less-container {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 60px;
}

.page-promo__load-less-btn {
  background: none;
  border: none;
  color: var(--niceph-primary);
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-promo__load-less-btn:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.5em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile padding-top for fixed header */
  }

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

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

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

  .page-promo__section-description {
    font-size: 0.95em;
  }

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

  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promo__promo-card,
  .page-promo__promo-item,
  .page-promo__vip-feature-item,
  .page-promo__step-card,
  .page-promo__category-card,
  .page-promo__faq-item,
  .page-promo__feature-item,
  .page-promo__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promo__promo-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-promo__promo-item-icon {
    margin-bottom: 10px;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promo__faq-answer {
    padding: 10px 20px 20px;
  }

  .page-promo__expandable-content.collapsed {
    max-height: 150px; /* Adjust for mobile */
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__promo-card-title,
  .page-promo__step-title,
  .page-promo__vip-feature-title,
  .page-promo__feature-title {
    font-size: 1.4em;
  }
}