:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Assuming dark body background from custom colors */
  background-color: var(--background-color);
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  overflow: hidden;
  color: #fff;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-promotions__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--glow-color);
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.7);
}

.page-promotions__hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
  border: none;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-promotions__cta-button--secondary {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.page-promotions__cta-button--secondary:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--background-color);
}

.page-promotions__section--highlight {
  background-color: #1a1e26;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promotions__dark-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
  padding: 80px 20px;
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 140, 26, 0.3);
}

.page-promotions__section-description {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-main-color);
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

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

.page-promotions__promo-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
}

.page-promotions__promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-content {
  padding: 25px;
}

.page-promotions__promo-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__promo-content p {
  font-size: 15px;
  color: var(--text-main-color);
  margin-bottom: 25px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, var(--deep-orange-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.5);
}

.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(--card-bg-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

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

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: var(--button-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-promotions__step-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__step-item p {
  font-size: 15px;
  color: var(--text-main-color);
}

.page-promotions__cta-center {
  margin-top: 60px;
}

.page-promotions__cta-button--vip {
  background: linear-gradient(180deg, #FFB04D 0%, #D96800 100%);
  box-shadow: 0 4px 15px rgba(255, 176, 77, 0.6);
}

.page-promotions__cta-button--vip:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFB04D 100%);
  box-shadow: 0 6px 20px rgba(255, 176, 77, 0.8);
}

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

.page-promotions__vip-item {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

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

.page-promotions__vip-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-promotions__vip-item h4 {
  font-size: 20px;
  color: var(--glow-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__vip-item p {
  font-size: 15px;
  color: var(--text-main-color);
}

.page-promotions__faq-list {
  margin-top: 50px;
  text-align: left;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 17px;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: var(--background-color);
  border-top: 1px solid var(--border-color);
  border-radius: 0 0 10px 10px;
  color: var(--text-main-color);
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-promotions__hero-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-promotions__promotions-grid,
  .page-promotions__steps-grid,
  .page-promotions__vip-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-image img {
    border-radius: 4px;
  }

  .page-promotions__hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-promotions__hero-content p {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin-bottom: 20px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
  }

  .page-promotions__section {
    padding: 50px 15px;
  }

  .page-promotions__dark-section {
    padding: 50px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-promotions__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-promotions__promotions-grid,
  .page-promotions__steps-grid,
  .page-promotions__vip-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card img {
    height: 200px;
  }

  .page-promotions__promo-content h3 {
    font-size: 20px;
  }

  .page-promotions__promo-content p {
    font-size: 14px;
  }

  .page-promotions__card-button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .page-promotions__step-item h3 {
    font-size: 18px;
  }

  .page-promotions__vip-item img {
    
  }

  .page-promotions__vip-item h4 {
    font-size: 18px;
  }

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

  .page-promotions__faq-qtext {
    font-size: 15px;
  }

  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__vip-item,
  details.page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}