:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --page-bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-promotions {
  color: var(--text-main); /* Default text color for dark body background */
  background-color: var(--page-bg); /* Matches shared.css body background */
}

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

.page-promotions__section-title {
  font-size: clamp(2em, 3.5vw, 2.8em);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-promotions__btn-primary,
.page-promotions__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;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--page-bg);
  transform: translateY(-3px);
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 30px;
}

.page-promotions__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 800;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main);
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: var(--page-bg);
  padding: 60px 0;
}

/* Types Section */
.page-promotions__types-section {
  background-color: var(--card-bg);
  padding: 60px 0;
}

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

.page-promotions__card {
  background-color: var(--deep-green);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions__card-title {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* VIP Section */
.page-promotions__vip-section {
  background-color: var(--page-bg);
  padding: 60px 0;
}

.page-promotions__vip-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions__vip-text-content {
  flex: 1;
}

.page-promotions__vip-image {
  flex: 1;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-promotions__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  margin-bottom: 30px;
}

.page-promotions__vip-benefits-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23F2C14E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-main);
}

/* Terms Section */
.page-promotions__terms-section {
  background-color: var(--card-bg);
  padding: 60px 0;
  text-align: center;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23A7D9B8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="8"></line></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-secondary);
}

.page-promotions__terms-list li strong {
  color: var(--text-main);
}

.page-promotions__terms-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-top: 30px;
  margin-bottom: 40px;
}

/* Guide Section */
.page-promotions__guide-section {
  background-color: var(--page-bg);
  padding: 60px 0;
}

.page-promotions__guide-list {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__guide-list li {
  counter-increment: guide-counter;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  color: var(--text-secondary);
  text-align: left;
}

.page-promotions__guide-list li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: var(--text-main);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2em;
}

.page-promotions__guide-list li strong {
  color: var(--text-main);
}

.page-promotions__guide-list li a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-promotions__guide-list li a:hover {
  color: var(--gold-color);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--card-bg);
  padding: 60px 0;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background-color: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  color: var(--gold-color);
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
}

.page-promotions__faq-answer p {
  margin: 0;
}

.page-promotions__faq-answer a {
  color: var(--glow-color);
  text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
  color: var(--gold-color);
}

/* Conclusion Section */
.page-promotions__conclusion-section {
  background-color: var(--page-bg);
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__vip-content-wrapper {
    flex-direction: column;
  }
  .page-promotions__vip-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 30px 15px;
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; /* For stacked buttons */
  }

  .page-promotions__hero-content .page-promotions__btn-primary {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-promotions__grid-cards {
    grid-template-columns: 1fr;
  }

  .page-promotions__card {
    padding: 20px;
  }

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

  .page-promotions__vip-benefits-list li,
  .page-promotions__terms-list li,
  .page-promotions__guide-list li {
    font-size: 1em;
  }

  .page-promotions__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__vip-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__vip-image,
  .page-promotions__terms-image {
    margin-left: auto;
    margin-right: auto;
  }
}

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

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