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

.page-promotions {
  background-color: var(--go123-background);
  color: var(--go123-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;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Aligns with body padding-top, prevents double spacing */
  padding-bottom: 60px;
  background-color: var(--go123-deep-green);
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  color: var(--go123-text-main);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--go123-gold-color);
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--go123-text-main);
}

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

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

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

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

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

.page-promotions__btn-secondary:hover {
  background-color: var(--go123-gold-color);
  color: var(--go123-background);
}

/* General Section Styles */
.page-promotions__section {
  padding: 80px 0;
  box-sizing: border-box;
}

.page-promotions__introduction-section {
  background-color: var(--go123-background);
  color: var(--go123-text-main);
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--go123-gold-color);
}

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

.page-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Featured Promotions */
.page-promotions__featured-promos {
  background-color: var(--go123-deep-green);
}

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

.page-promotions__promo-card {
  background-color: var(--go123-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: var(--go123-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: var(--go123-gold-color);
}

.page-promotions__card-description {
  font-size: 1rem;
  margin: 0 20px 20px;
  flex-grow: 1;
  color: var(--go123-text-secondary);
}

.page-promotions__card-button {
  margin: 0 20px 20px;
  display: block;
  width: calc(100% - 40px);
}

/* How to Claim */
.page-promotions__how-to-claim {
  background-color: var(--go123-background);
  color: var(--go123-text-main);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-promotions__step-number {
  background: var(--go123-button-gradient);
  color: #ffffff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--go123-gold-color);
}

.page-promotions__step-content p {
  font-size: 1rem;
  color: var(--go123-text-secondary);
}

.page-promotions__step-content a {
  color: var(--go123-secondary-color);
  text-decoration: underline;
}

.page-promotions__step-content a:hover {
  color: var(--go123-gold-color);
}

/* Terms & Conditions */
.page-promotions__terms-conditions {
  background-color: var(--go123-deep-green);
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__terms-item {
  background-color: var(--go123-card-bg);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--go123-text-main);
}

.page-promotions__terms-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--go123-gold-color);
}

.page-promotions__terms-item p {
  font-size: 1rem;
  color: var(--go123-text-secondary);
}

.page-promotions__terms-conditions a {
  color: var(--go123-secondary-color);
  text-decoration: underline;
}

.page-promotions__terms-conditions a:hover {
  color: var(--go123-gold-color);
}

/* Why Choose */
.page-promotions__why-choose {
  background-color: var(--go123-background);
  color: var(--go123-text-main);
}

.page-promotions__advantage-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions__advantage-item:hover {
  transform: translateY(-5px);
}

.page-promotions__advantage-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--go123-gold-color);
}

.page-promotions__advantage-item p {
  font-size: 1rem;
  color: var(--go123-text-secondary);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--go123-deep-green);
  color: var(--go123-text-main);
}

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

.page-promotions__faq-item {
  background-color: var(--go123-card-bg);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--go123-gold-color);
  background-color: var(--go123-card-bg);
  border-bottom: 1px solid var(--go123-divider-color);
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
  background-color: var(--go123-deep-green);
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--go123-secondary-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: var(--go123-text-secondary);
  border-top: 1px solid var(--go123-divider-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 700px;
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__text-block {
    font-size: 1rem;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 20px;
    max-width: 100%;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__section {
    padding: 50px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-description {
    font-size: 0.95rem;
  }
  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .page-promotions__step-number {
    margin-bottom: 10px;
  }
  .page-promotions__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__advantage-item {
    padding: 25px;
  }
  .page-promotions__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95rem;
  }

  /* Mobile image, video, button, container specific overrides */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-grid,
  .page-promotions__cta-buttons,
  .page-promotions__faq-list,
  .page-promotions__steps-list,
  .page-promotions__terms-list,
  .page-promotions__advantage-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}