:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --card-bg: #111111;
  --body-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

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

.page-promotions h1,
.page-promotions h2,
.page-promotions h3 {
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions p {
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 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: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #000; /* Ensure dark background for hero */
}

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

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-promotions__hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

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

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

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

/* General Section Styles */
.page-promotions__intro-section,
.page-promotions__quick-access-section,
.page-promotions__games-services-section,
.page-promotions__promotions-section,
.page-promotions__security-support-section,
.page-promotions__faq-section,
.page-promotions__blog-section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__intro-section p,
.page-promotions__security-support-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-promotions__intro-section h2,
.page-promotions__quick-access-section h2,
.page-promotions__games-services-section h2,
.page-promotions__promotions-section h2,
.page-promotions__security-support-section h2,
.page-promotions__faq-section h2,
.page-promotions__blog-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-promotions__games-services-section h3,
.page-promotions__security-support-section h3 {
  text-align: left;
  color: var(--secondary-color);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 30px;
}

.page-promotions__games-services-section .page-promotions__text-content p,
.page-promotions__security-support-section .page-promotions__text-content p {
  text-align: left;
  margin-bottom: 20px;
  color: var(--text-main);
}

/* Quick Access Buttons */
.page-promotions__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.5);
}

.page-promotions__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--body-bg);
  border-color: var(--primary-color);
}

/* Games and Services Section */
.page-promotions__games-services-section .page-promotions__content-wrapper,
.page-promotions__security-support-section .page-promotions__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-promotions__games-services-section .page-promotions__text-content,
.page-promotions__security-support-section .page-promotions__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions__games-services-section .page-promotions__image-content,
.page-promotions__security-support-section .page-promotions__image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__games-services-section .page-promotions__image-content img,
.page-promotions__security-support-section .page-promotions__image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

/* Promotions Grid */
.page-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 211, 107, 0.2);
}

.page-promotions__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-promotions__promo-card p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
}

.page-promotions__promo-card .page-promotions__btn-primary,
.page-promotions__promo-card .page-promotions__btn-secondary {
  width: auto;
  min-width: 150px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-promotions__cta-bottom {
  margin-top: 50px;
  text-align: center;
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  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 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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(255, 211, 107, 0.05);
}

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

.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 20px 20px;
  background: rgba(255, 211, 107, 0.02);
  border-radius: 0 0 8px 8px;
}

details.page-promotions__faq-item .page-promotions__faq-answer p {
  text-align: left;
  color: var(--text-main);
}

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

.page-promotions__blog-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.15);
}

.page-promotions__blog-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: left;
}

.page-promotions__blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__blog-card h3 a:hover {
  color: var(--primary-color);
}

.page-promotions__blog-card p {
  color: var(--text-main);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions__read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__read-more:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__games-services-section .page-promotions__content-wrapper,
  .page-promotions__security-support-section .page-promotions__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__games-services-section h3,
  .page-promotions__security-support-section h3 {
    text-align: center;
  }

  .page-promotions__games-services-section .page-promotions__text-content p,
  .page-promotions__security-support-section .page-promotions__text-content p {
    text-align: center;
  }

  .page-promotions__games-services-section .page-promotions__image-content,
  .page-promotions__security-support-section .page-promotions__image-content {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .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__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__intro-section,
  .page-promotions__quick-access-section,
  .page-promotions__games-services-section,
  .page-promotions__promotions-section,
  .page-promotions__security-support-section,
  .page-promotions__faq-section,
  .page-promotions__blog-section {
    padding: 40px 15px;
  }

  .page-promotions h1 {
    font-size: 2.5rem;
  }

  .page-promotions h2 {
    font-size: 2rem;
  }

  .page-promotions p {
    font-size: 1rem;
  }

  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    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__promo-card {
    padding: 20px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
  .page-promotions__faq-qtext { font-size: 15px; }
  details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 15px 15px; }

  .page-promotions__blog-card {
    padding: 20px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-promotions__hero-image,
  .page-promotions__games-services-section .page-promotions__image-content,
  .page-promotions__security-support-section .page-promotions__image-content,
  .page-promotions__promo-card img,
  .page-promotions__blog-card img {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}