.page-promotions {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --text-main-color: #FFF3E6;
  --card-bg: #17191F;
  --site-bg-dark: #0D0E12;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  color: var(--text-main-color); /* Default text color for dark backgrounds */
  background-color: var(--site-bg-dark);
  font-family: Arial, sans-serif;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 0 0 8px rgba(255, 165, 58, 0.5);
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: var(--text-main-color);
}

/* 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: linear-gradient(180deg, var(--site-bg-dark) 0%, #1a0a00 100%);
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  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;
}

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

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

.page-promotions__hero-content h1 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 165, 58, 0.8);
  letter-spacing: 1px;
}

.page-promotions__hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-main-color);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  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(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* Intro Section */
.page-promotions__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--site-bg-dark);
  color: var(--text-main-color);
}

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

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

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

.page-promotions__feature-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main-color);
}

/* Quick Access Section */
.page-promotions__quick-access {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0d0d12;
  color: var(--text-main-color);
}

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

.page-promotions__link-card {
  display: block;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 8px var(--glow-color);
}

.page-promotions__link-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__link-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #cccccc;
}

/* Games Showcase Section */
.page-promotions__games-showcase {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--site-bg-dark);
  color: var(--text-main-color);
}

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

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

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

.page-promotions__game-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__game-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__game-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promotions__game-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__game-btn:hover {
  background-color: var(--secondary-color);
}

/* Promotions Offers Section */
.page-promotions__promo-offers {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0d0d12;
  color: var(--text-main-color);
}

.page-promotions__promo-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);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__promo-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__promo-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__promo-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__date {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 15px;
  display: block;
}

.page-promotions__promo-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  margin-top: auto;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 140, 26, 0.3);
  border: none;
}

.page-promotions__promo-btn:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 26, 0.5);
}

/* Security & Support Section */
.page-promotions__security-support {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--site-bg-dark);
  color: var(--text-main-color);
}

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

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

.page-promotions__security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

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

.page-promotions__security-item h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__security-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-promotions__support-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__support-btn:hover {
  background-color: var(--secondary-color);
}

/* FAQ Section */
.page-promotions__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0d0d12;
  color: var(--text-main-color);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 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;
  color: var(--secondary-color);
  font-weight: bold;
}

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, 140, 26, 0.1);
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

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

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: #1a1c22;
  border-radius: 0 0 12px 12px;
  color: #cccccc;
}

.page-promotions__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
}

.page-promotions__faq-app-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-app-link:hover {
  background-color: var(--secondary-color);
}

/* Blog Section */
.page-promotions__blog-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--site-bg-dark);
  color: var(--text-main-color);
}

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

.page-promotions__blog-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__blog-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Recommended size for content images */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__blog-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-promotions__blog-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__blog-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  margin-top: auto;
  transition: background-color 0.3s ease;
}

.page-promotions__blog-link:hover {
  background-color: var(--secondary-color);
}

.page-promotions__view-all-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__view-all-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  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__view-all-btn:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions__container {
    padding: 20px 15px;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

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

  /* Hero Section */
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions__hero-content h1 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .page-promotions__hero-content p {
    font-size: 16px;
  }

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

  /* Image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__link-card, .page-promotions__game-card, .page-promotions__promo-card, .page-promotions__feature-item, .page-promotions__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsiveness */
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .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__features-grid,
  .page-promotions__links-grid,
  .page-promotions__game-cards-grid,
  .page-promotions__promo-grid,
  .page-promotions__security-grid,
  .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-item,
  .page-promotions__link-card,
  .page-promotions__game-card,
  .page-promotions__promo-card,
  .page-promotions__security-item,
  .page-promotions__blog-card {
    padding: 20px;
  }

  .page-promotions__feature-item img,
  .page-promotions__security-item img {
    
  }

  .page-promotions__feature-item h3,
  .page-promotions__link-card h3,
  .page-promotions__game-card h3,
  .page-promotions__promo-card h3,
  .page-promotions__security-item h3,
  .page-promotions__blog-card h3 {
    font-size: 20px;
  }

  .page-promotions__feature-item p,
  .page-promotions__link-card p,
  .page-promotions__game-card p,
  .page-promotions__promo-card p,
  .page-promotions__security-item p,
  .page-promotions__blog-card p {
    font-size: 15px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }

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

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

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

  .page-promotions__view-all-btn {
    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;
  }
}