.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8; /* Light background for the page */
}

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-promotions__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 30px; /* Space between image and text */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.page-promotions__hero-content {
  position: relative; /* Ensure content is above any background layers */
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-promotions__intro-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-game {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions__btn-primary:hover {
  background-color: #d66b05;
  border-color: #d66b05;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-promotions__btn-game {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  margin-top: auto; /* Push button to bottom of card */
}

.page-promotions__btn-block {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0 auto;
}

.page-promotions__btn-large {
  min-width: 200px;
}

/* General Section Styles */
.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: inherit;
}

.page-promotions__dark-section .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__paragraph {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.7;
  text-align: justify;
}

.page-promotions__paragraph--center {
  text-align: center;
}

.page-promotions__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0;
  text-align: left;
}

/* Promo Grid */
.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-promotions__promo-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__promo-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__promo-card-title a:hover {
  text-decoration: underline;
}

.page-promotions__promo-card-description {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Game Specific Promos */
.page-promotions__game-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions__game-promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  padding: 25px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promotions__game-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__game-promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__game-promo-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions__game-promo-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__game-promo-title a:hover {
  text-decoration: underline;
}

.page-promotions__game-promo-description {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-colored-1 {
  border-color: #26A9E0;
}
.page-promotions__card-colored-2 {
  border-color: #EA7C07;
}
.page-promotions__card-colored-3 {
  border-color: #000000;
}
.page-promotions__card-colored-4 {
  border-color: #26A9E0;
}
.page-promotions__card-colored-5 {
  border-color: #EA7C07;
}

/* How to Claim Steps */
.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.3);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Terms & Conditions */
.page-promotions__article-body {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
}

.page-promotions__article-body p {
  margin-bottom: 15px;
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

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;
  background-color: #ffffff;
  color: #333333;
  font-weight: 600;
}

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: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 17px;
  line-height: 1.5;
  color: #26A9E0;
}

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

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 12px 12px;
  color: #555555;
  font-size: 1rem;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA */
.page-promotions__final-cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    max-height: 450px;
  }

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

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

  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-promotions__intro-description {
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }
}

@media (max-width: 849px) {
  .page-promotions__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 30px 0 !important;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px !important;
    min-height: unset;
  }

  .page-promotions__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-promotions__hero-image {
    max-height: 300px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__hero-content {
    padding: 0 15px !important;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    margin-bottom: 15px !important;
  }

  .page-promotions__intro-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
    margin-bottom: 20px !important;
  }

  .page-promotions__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-game,
  .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: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-promotions__btn-block {
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 20px auto 0 auto !important;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem) !important;
    margin-bottom: 15px !important;
  }

  .page-promotions__paragraph {
    font-size: 1rem !important;
    text-align: left !important;
    padding: 0 15px !important;
  }

  .page-promotions__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__promo-grid,
  .page-promotions__game-promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-top: 20px !important;
  }

  .page-promotions__promo-card,
  .page-promotions__game-promo-card,
  .page-promotions__step-card {
    padding: 20px !important;
    border-radius: 8px !important;
  }

  .page-promotions__promo-card-image,
  .page-promotions__game-promo-image {
    height: 160px !important;
    margin-bottom: 15px !important;
  }

  .page-promotions__promo-card-title,
  .page-promotions__game-promo-title {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }

  .page-promotions__promo-card-description,
  .page-promotions__game-promo-description,
  .page-promotions__step-description {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
  }

  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-promotions__step-title {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }

  .page-promotions__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
    margin-top: 25px !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .page-promotions__article-body {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    padding: 0 15px !important;
  }

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

  .page-promotions__faq-qtext {
    font-size: 1rem !important;
  }

  .page-promotions__faq-toggle {
    font-size: 24px !important;
    width: 24px;
    margin-left: 10px;
  }

  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.95rem !important;
  }

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

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}