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

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

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

.page-promotions__dark-bg {
  background-color: #17191F; /* Card BG */
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF3E6;
}

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

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

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

.page-promotions__main-title {
  color: #FFB04D; /* Glow */
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 18px;
  color: #FFF3E6;
  margin-bottom: 30px;
  max-width: 900px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions__card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__card-title {
  font-size: 24px;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-promotions__card p {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: #FFB04D; /* Glow */
  border: 2px solid #FFB04D;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-promotions__btn-secondary:hover {
  background: #FFB04D;
  color: #17191F;
  transform: translateY(-2px);
}

/* Specific Offers Section */
.page-promotions__offer-item {
  background-color: #0D0E12;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #A84F0C; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__offer-title {
  font-size: 28px;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  border-bottom: 2px solid #D96800; /* Deep Orange */
  padding-bottom: 10px;
}

.page-promotions__offer-item p {
  font-size: 17px;
  color: #FFF3E6;
  margin-bottom: 15px;
}

.page-promotions__offer-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__offer-item ul li {
  background: #17191F;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-left: 4px solid #FF8C1A;
  border-radius: 5px;
  color: #FFF3E6;
  font-size: 16px;
}

.page-promotions__offer-item ul li strong {
  color: #FFB04D;
}

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

.page-promotions__vip-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

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

.page-promotions__vip-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__vip-button {
  margin-top: 50px;
}

/* How to Claim Section */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-promotions__steps-list li {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-left: 5px solid #FF8C1A;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #FFF3E6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.page-promotions__steps-list li:hover {
  transform: translateX(5px);
}

.page-promotions__steps-list li strong {
  color: #FFB04D;
  font-size: 19px;
  display: block;
  margin-bottom: 5px;
}

.page-promotions__steps-list li a {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__steps-list li a:hover {
  text-decoration: underline;
}

/* Terms & Conditions Section */
.page-promotions__terms-section ul {
  list-style: disc;
  padding-left: 25px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #FFF3E6;
}

.page-promotions__terms-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  text-align: center;
  display: block;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  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;
}

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

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

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

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: #0D0E12;
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 16px;
}

/* 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: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C; /* Border */
}

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

.page-promotions__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__blog-title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__blog-title a {
  color: #FFB04D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__blog-title a:hover {
  color: #FFA53A;
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #A84F0C; /* Border color used for subtle text */
  margin-bottom: 15px;
}

.page-promotions__blog-summary {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-promotions__btn-text {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__btn-text:hover {
  color: #FFB04D;
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__main-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__offer-item, .page-promotions__vip-card, .page-promotions__steps-list li, details.page-promotions__faq-item, .page-promotions__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__main-title {
    font-size: 36px;
  }
  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .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__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-promotions__feature-cards, .page-promotions__vip-benefits, .page-promotions__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card, .page-promotions__vip-card, .page-promotions__blog-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__offer-title {
    font-size: 24px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions__steps-list li {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-promotions__steps-list li strong {
    font-size: 17px;
  }
  .page-promotions__terms-section ul {
    padding-left: 20px;
  }
}