/* style/promotions.css */

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

.page-promotions {
  background-color: var(--page-promotions-bg);
  color: var(--page-promotions-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--page-promotions-text-main);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--page-promotions-text-secondary);
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--page-promotions-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-promotions__btn-secondary {
  background: var(--page-promotions-deep-green);
  color: var(--page-promotions-text-main);
  border: 2px solid var(--page-promotions-border);
}

.page-promotions__btn-secondary:hover {
  background: var(--page-promotions-border);
  color: #ffffff;
}

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

.page-promotions__hero-image-link {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__hero-title {
  color: var(--page-promotions-gold);
  font-size: clamp(2.2em, 4vw, 3.5em);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--page-promotions-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-promotions__why-choose-section {
  background-color: var(--page-promotions-dark-section-bg, var(--page-promotions-card-bg));
  padding: 80px 0;
  color: var(--page-promotions-text-main);
}

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

.page-promotions__feature-item {
  background-color: var(--page-promotions-card-bg);
  border: 1px solid var(--page-promotions-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__feature-title {
  font-size: 1.5em;
  color: var(--page-promotions-gold);
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  color: var(--page-promotions-text-secondary);
}

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

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

.page-promotions__card {
  background-color: var(--page-promotions-card-bg);
  border: 1px solid var(--page-promotions-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

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

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

.page-promotions__card-title {
  font-size: 1.6em;
  color: var(--page-promotions-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promotions__card .page-promotions__cta-button {
  margin-top: auto; /* Push button to bottom */
  width: 100%;
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  background-color: var(--page-promotions-dark-section-bg, var(--page-promotions-card-bg));
  padding: 80px 0;
  color: var(--page-promotions-text-main);
}

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

.page-promotions__step-item {
  background-color: var(--page-promotions-bg);
  border: 1px solid var(--page-promotions-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__step-title {
  font-size: 1.4em;
  color: var(--page-promotions-gold);
  margin-bottom: 15px;
}

.page-promotions__step-description {
  color: var(--page-promotions-text-secondary);
  margin-bottom: 20px;
}

/* VIP Section */
.page-promotions__vip-section {
  padding: 80px 0;
  background-color: var(--page-promotions-bg);
  text-align: center;
}

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

.page-promotions__vip-benefit-item {
  background-color: var(--page-promotions-card-bg);
  border: 1px solid var(--page-promotions-glow);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.3);
}

.page-promotions__vip-benefit-title {
  font-size: 1.5em;
  color: var(--page-promotions-glow);
  margin-bottom: 15px;
}

.page-promotions__vip-benefit-description {
  color: var(--page-promotions-text-secondary);
}

.page-promotions__vip-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions-section {
  background-color: var(--page-promotions-dark-section-bg, var(--page-promotions-card-bg));
  padding: 80px 0;
  color: var(--page-promotions-text-main);
}

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

.page-promotions__terms-list li {
  background-color: var(--page-promotions-bg);
  border: 1px solid var(--page-promotions-divider);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--page-promotions-text-secondary);
  line-height: 1.8;
}

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

.page-promotions__terms-conditions-section .page-promotions__cta-button {
  margin-top: 40px;
}

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

.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-promotions__faq-item {
  background-color: var(--page-promotions-card-bg);
  border: 1px solid var(--page-promotions-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-promotions-text-main);
  cursor: pointer;
  background-color: var(--page-promotions-deep-green);
  border-bottom: 1px solid var(--page-promotions-divider);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--page-promotions-gold);
  transition: transform 0.3s ease;
}

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

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

.page-promotions__faq-answer p {
  margin-bottom: 10px;
}

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

.page-promotions__conclusion-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Global image settings for content area */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

  .page-promotions__hero-image-link {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__features-grid,
  .page-promotions__promotion-cards-grid,
  .page-promotions__steps-grid,
  .page-promotions__vip-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__container,
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__feature-item,
  .page-promotions__step-item,
  .page-promotions__vip-benefit-item,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions img,
  .page-promotions__hero-image,
  .page-promotions__feature-image,
  .page-promotions__card-image,
  .page-promotions__step-image,
  .page-promotions__vip-image,
  .page-promotions__conclusion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-promotions__terms-list {
    padding: 0 15px;
  }

  .page-promotions__terms-list li {
    padding: 15px;
  }

  .page-promotions__cta-button.page-promotions__btn-primary,
  .page-promotions__cta-button.page-promotions__btn-secondary {
    margin-left: 0;
    margin-right: 0;
  }
  
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__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;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }

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

  .page-promotions__cta-button {
    font-size: 0.95em;
  }
}