.page-promo {
  color: #ffffff; /* Light text for dark body background #0F141F */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A202C; /* Main color */
  overflow: hidden;
  position: relative;
}

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

.page-promo__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promo__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8); /* Allow brightness filter for background image effect */
}

.page-promo__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A202C; /* Main color */
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color */
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

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

.page-promo__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promo__featured-promotions,
.page-promo__vip-section,
.page-promo__how-to-claim,
.page-promo__why-gamezone,
.page-promo__faq-section,
.page-promo__cta-final {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promo__section-description {
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent white */
  border-radius: 12px;
  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__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promo__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promo__promo-card-title {
  font-size: 1.5em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__promo-card-title a:hover {
  color: #e6c200;
}

.page-promo__promo-card-text {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__vip-section {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promo__vip-content {
  flex: 1;
}

.page-promo__vip-content .page-promo__section-title {
  text-align: left;
}

.page-promo__vip-content .page-promo__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promo__vip-image {
  flex: 0 0 450px; /* Fixed width for image on desktop */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-image img {
  width: 100%;
  height: auto;
  display: block;
}

.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-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-icon {
  font-size: 2.5em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
  font-weight: bold;
  border: 2px solid #FFD700;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
}

.page-promo__step-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
}

.page-promo__step-text a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__step-text a:hover {
  text-decoration: underline;
}

.page-promo__how-to-claim-cta {
  text-align: center;
  margin-top: 60px;
}

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

.page-promo__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Small brightness adjustment to make icons pop, not changing color */
}

.page-promo__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
}

.page-promo__feature-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95em;
}

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

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Accent color */
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 20px;
  font-size: 0.95em;
}

.page-promo__faq-question.active + .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-promo__cta-final {
  text-align: center;
  padding: 100px 20px;
  background-color: #1A202C; /* Main color */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__vip-section {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__vip-content .page-promo__section-title,
  .page-promo__vip-content .page-promo__section-description {
    text-align: center;
  }
  .page-promo__vip-image {
    flex: none;
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-promo {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-promo__hero-section {
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__featured-promotions,
  .page-promo__vip-section,
  .page-promo__how-to-claim,
  .page-promo__why-gamezone,
  .page-promo__faq-section,
  .page-promo__cta-final {
    padding: 60px 15px;
  }
  .page-promo__promo-card-image {
    height: 200px;
  }
  .page-promo__feature-icon {
    width: 200px;
    height: 200px;
  }
  /* Mobile image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__faq-answer p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__feature-icon {
    width: 200px;
    height: 200px;
  }
}