:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg: #17191F;
  --page-section-bg: #0D0E12; /* Custom background for sections, body bg is from shared */
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page, assuming dark body bg */
  background-color: var(--page-section-bg); /* Use for sections, body is handled by shared */
}

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

.page-promotions__section-title,
.page-promotions__card-title,
.page-promotions__step-title {
  color: var(--text-main);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions__section-title {
  font-size: 2.5em;
}

.page-promotions__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #ccc;
}

/* 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 overall offset */
  background-color: var(--page-section-bg);
}

.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: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

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

.page-promotions__hero-title {
  color: var(--text-main);
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-small {
  padding: 10px 25px;
  font-size: 0.9em;
  margin-top: 15px;
}

/* General Section Styling */
.page-promotions__intro-section,
.page-promotions__promotion-types-section,
.page-promotions__terms-section,
.page-promotions__claim-section,
.page-promotions__security-support-section,
.page-promotions__faq-section,
.page-promotions__news-updates-section {
  padding: 80px 0;
}

.page-promotions__intro-section,
.page-promotions__terms-section,
.page-promotions__security-support-section,
.page-promotions__news-updates-section {
  background-color: var(--page-section-bg);
}

.page-promotions__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-promotions__dark-section p {
  color: #ccc;
}

.page-promotions__promotion-types-section,
.page-promotions__claim-section,
.page-promotions__faq-section {
  background-color: #0D0E12;
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

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

.page-promotions__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--text-main);
  text-align: left;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #ccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__card .page-promotions__cta-button {
  align-self: flex-start;
  margin-top: auto;
  width: auto;
}

/* Step List */
.page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-promotions__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.page-promotions__step-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: left;
  position: relative;
  padding-left: 35px;
}

.page-promotions__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: -5px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: bold;
}

.page-promotions__step-item p {
  color: #ccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Security & Support Section */
.page-promotions__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions__security-text {
  flex: 1;
  min-width: 300px;
}

.page-promotions__security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.page-promotions__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}

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(var(--primary-color), 0.1);
}

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

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

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #101216; /* Slightly lighter dark for answer background */
  border-radius: 0 0 5px 5px;
  color: #ccc;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__security-content {
    flex-direction: column;
  }
  .page-promotions__security-text,
  .page-promotions__security-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    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-small {
    padding: 8px 20px;
    font-size: 0.85em;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__card-text {
    font-size: 0.95em;
  }
  .page-promotions__step-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-title {
    font-size: 1.1em;
  }
  .page-promotions__faq-list {
    padding: 0;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 1em;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  /* Mobile 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__security-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-promotions__card-content {
    padding: 15px;
  }
  .page-promotions__step-item {
    padding: 20px;
  }
}