.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions__section-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF1E8; /* Text Main */
}

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

/* 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: #140C0C; /* Background */
}

.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 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-promotions__hero-content p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF1E8; /* Text Main */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  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 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

/* Featured Promotions Grid */
.page-promotions__featured-promos {
  background-color: #140C0C; /* Background */
}

.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-color: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #6A1E1E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-title {
  font-size: 24px;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-text {
  font-size: 16px;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions__steps-list li {
  background-color: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.page-promotions__steps-list li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 22px;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__step-button:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-promotions__terms-list {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 25px;
  font-size: 17px;
  color: #FFF1E8; /* Text Main */
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

/* Security & Support Section */
.page-promotions__security-support {
  background-color: #C61F1F; /* Primary Color */
  color: #ffffff;
}

.page-promotions__security-support .page-promotions__section-title {
  color: #F3C54D; /* Gold */
}

.page-promotions__security-support .page-promotions__section-description {
  color: #ffffff;
}

.page-promotions__security-support .page-promotions__cta-button {
  background: #E53030; /* Auxiliary Color */
  box-shadow: none;
}

.page-promotions__security-support .page-promotions__cta-button:hover {
  background: #C61F1F; /* Primary Color */
  transform: translateY(-2px);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #2A1212; /* Card BG */
  color: #FFF1E8; /* Text Main */
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #140C0C; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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: #F3C54D; /* Gold */
  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: #2A1212; /* Card BG */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF1E8; /* Text Main */
  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: #140C0C; /* Background */
  border-radius: 0 0 10px 10px;
  text-align: left;
  color: #FFF1E8; /* Text Main */
  font-size: 16px;
}

/* Latest Blog Section */
.page-promotions__latest-blog {
  background-color: #140C0C; /* Background */
  padding-bottom: 80px;
}

.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: #2A1212; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #6A1E1E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__blog-title-link {
  font-size: 22px;
  color: #F3C54D; /* Gold */
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__blog-title-link:hover {
  color: #FFB04A;
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #7E0D0D; /* Deep Red */
  margin-bottom: 15px;
}

.page-promotions__blog-excerpt {
  font-size: 16px;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__read-more {
  align-self: flex-start;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions__hero-content h1 {
    font-size: clamp(32px, 4.5vw, 48px);
  }
  .page-promotions__hero-content p {
    font-size: 18px;
  }
  .page-promotions__promo-title {
    font-size: 22px;
  }
  .page-promotions__step-title {
    font-size: 20px;
  }
  .page-promotions__blog-title-link {
    font-size: 20px;
  }
}

@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__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card {
    margin: 0 10px;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-content {
    padding: 20px;
  }
  .page-promotions__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__steps-list {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promotions__steps-list li {
    padding: 20px;
  }
  .page-promotions__step-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__terms-list {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 15px;
  }
  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: 20px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__blog-card {
    margin: 0 10px;
  }
  .page-promotions__blog-image {
    height: 180px;
  }
  .page-promotions__blog-title-link {
    font-size: 18px;
  }
  .page-promotions__read-more {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Image responsive override */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section, .page-promotions__container, .page-promotions__promo-card, .page-promotions__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__promo-card, .page-promotions__blog-card {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__promo-content, .page-promotions__blog-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
  .page-promotions__hero-content p {
    font-size: 16px;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 5vw, 32px);
  }
  .page-promotions__promo-title {
    font-size: 20px;
  }
  .page-promotions__step-title {
    font-size: 18px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__blog-title-link {
    font-size: 16px;
  }
}

/* Contrast Fixes */
.page-promotions__dark-section {
  background-color: #140C0C;
  color: #FFF1E8;
}
.page-promotions__dark-section .page-promotions__section-title {
  color: #F3C54D;
}
.page-promotions__dark-section .page-promotions__section-description {
  color: #FFF1E8;
}
.page-promotions__security-support {
  background-color: #C61F1F;
  color: #ffffff;
}
.page-promotions__security-support .page-promotions__section-title {
  color: #F3C54D;
}
.page-promotions__security-support .page-promotions__section-description {
  color: #ffffff;
}
.page-promotions__cta-button, .page-promotions__card-button, .page-promotions__step-button {
  color: #ffffff;
}
.page-promotions__blog-title-link {
  color: #F3C54D;
}
.page-promotions__blog-title-link:hover {
  color: #FFB04A;
}