:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --main-text: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
}

.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--main-text); /* Body background is dark (#0A0A0A), so text should be light */
  background-color: #0A0A0A; /* Ensure main content area matches body background */
}

.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;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions p {
  margin-bottom: 15px;
  color: var(--main-text);
}

.page-promotions__text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Buttons */
.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #000000; /* Ensuring dark text on bright button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B53B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--secondary-color);
  text-decoration: none;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  background: var(--secondary-color);
  color: #0A0A0A; /* Dark text on secondary color for contrast */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 211, 107, 0.2);
}

/* 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 as body handles header offset */
  overflow: hidden;
}

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

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Using clamp for responsive H1 font size */
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 18px;
  color: var(--main-text);
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-button {
  margin-top: 20px;
}

/* Intro Section */
.page-promotions__intro-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.page-promotions__intro-content {
  font-size: 17px;
  line-height: 1.8;
}

/* Quick Links Section */
.page-promotions__quick-links-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

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

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

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

.page-promotions__link-description {
  font-size: 15px;
  color: var(--main-text);
}

/* Games Section */
.page-promotions__games-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-promotions__game-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-promotions__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__game-title {
  font-size: 24px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-promotions__game-description {
  font-size: 15px;
  color: var(--main-text);
  padding: 0 20px 20px;
}

.page-promotions__game-card .page-promotions__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

/* Offers Section */
.page-promotions__offers-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-promotions__offer-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-promotions__offer-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__offer-title {
  font-size: 22px;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-promotions__offer-description {
  font-size: 15px;
  color: var(--main-text);
  padding: 0 20px 20px;
}

.page-promotions__offer-card .page-promotions__btn-primary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
}

/* Security & Support Section */
.page-promotions__security-support-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

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

.page-promotions__security-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--glow-color)); /* Allowed filter for glow, not color change */
}

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

.page-promotions__security-description {
  font-size: 15px;
  color: var(--main-text);
}

.page-promotions__contact-info {
  text-align: center;
  margin-top: 50px;
  font-size: 17px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

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 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px;
  text-align: center;
  line-height: 1;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 0 0 12px 12px;
  color: var(--main-text);
  font-size: 16px;
}

/* Blog Section */
.page-promotions__blog-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

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

.page-promotions__blog-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-promotions__blog-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__blog-title {
  font-size: 20px;
  padding: 20px 20px 10px;
  font-weight: bold;
  line-height: 1.4;
}

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

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

.page-promotions__blog-summary {
  font-size: 15px;
  color: var(--main-text);
  padding: 0 20px 10px;
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #888;
  padding: 0 20px 20px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: 30px;
  }
  .page-promotions__sub-title {
    font-size: 22px;
  }
  .page-promotions__game-image, .page-promotions__offer-image {
    height: 200px;
  }
}

@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: 8px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-promotions__container {
    padding: 20px 15px;
  }
  .page-promotions__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-promotions__sub-title {
    font-size: 20px;
  }
  .page-promotions p {
    font-size: 16px;
  }
  .page-promotions__link-grid, .page-promotions__game-grid, .page-promotions__offer-grid, .page-promotions__security-support-grid, .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__link-card, .page-promotions__game-card, .page-promotions__offer-card, .page-promotions__security-item, .page-promotions__blog-card {
    padding: 20px;
  }
  .page-promotions__link-title, .page-promotions__game-title, .page-promotions__offer-title, .page-promotions__security-title, .page-promotions__blog-title {
    font-size: 20px;
  }
  .page-promotions__link-description, .page-promotions__game-description, .page-promotions__offer-description, .page-promotions__security-description, .page-promotions__blog-summary {
    font-size: 14px;
  }
  .page-promotions__game-image, .page-promotions__offer-image, .page-promotions__blog-image {
    height: 180px;
  }
  .page-promotions__game-card .page-promotions__btn-secondary, .page-promotions__offer-card .page-promotions__btn-primary {
    width: calc(100% - 20px);
    margin: 0 10px 10px;
  }
  .page-promotions__faq-section {
    padding: 40px 0;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }
  .page-promotions__contact-info {
    font-size: 15px;
  }
  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  /* Mobile button 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__link-card, .page-promotions__game-card, .page-promotions__offer-card, .page-promotions__security-item, .page-promotions__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-promotions__link-grid, .page-promotions__game-grid, .page-promotions__offer-grid, .page-promotions__security-support-grid, .page-promotions__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__view-all-button-container .page-promotions__btn-secondary {
    width: auto !important;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-promotions__hero-description {
    font-size: 14px;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-promotions__game-image, .page-promotions__offer-image, .page-promotions__blog-image {
    height: 150px;
  }
  .page-promotions__link-title, .page-promotions__game-title, .page-promotions__offer-title, .page-promotions__security-title, .page-promotions__blog-title {
    font-size: 18px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
  }
}