:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* From shared.css body background */
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.3);
}

.page-promotions {
  color: var(--text-light); /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--bg-dark); /* Ensure main content background matches body */
  min-height: 100vh; /* Ensure content stretches full height */
}

.page-promotions__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on shared header height */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Use accent color for main title */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px var(--shadow-dark);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Button responsiveness */
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-dark);
}

.page-promotions__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-promotions__btn-secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--shadow-dark);
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
  color: var(--text-dark); /* Default for light backgrounds */
}

.page-promotions__section-title--light {
  color: var(--text-light); /* For dark backgrounds */
}

.page-promotions__section-description {
  font-size: 17px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark); /* Default for light backgrounds */
}

.page-promotions__section-description--light {
  color: var(--text-light); /* For dark backgrounds */
}

/* Overview Section */
.page-promotions__overview-section {
  padding: 80px 0;
}

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

.page-promotions__overview-item {
  background: var(--card-bg-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

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

.page-promotions__overview-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%; /* Image responsiveness */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__overview-item-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions__overview-item-text {
  font-size: 16px;
  color: var(--text-dark);
}

/* Promotions List Section */
.page-promotions__promotions-list {
  padding: 80px 0;
}

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

.page-promotions__card {
  background: var(--card-bg-dark); /* Light background for card content on dark section */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  max-width: 100%; /* Image responsiveness */
  height: auto;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promotions__card-title a:hover {
  color: var(--primary-color);
}

.page-promotions__card-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-promotions__card-button {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  margin-top: auto; /* Push button to bottom */
}

/* How To Claim Section */
.page-promotions__how-to-claim {
  padding: 80px 0;
}

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

.page-promotions__step-item {
  background: var(--card-bg-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
}

.page-promotions__step-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%; /* Image responsiveness */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-promotions__step-text {
  font-size: 15px;
  color: var(--text-dark);
}

.page-promotions__cta-center {
  margin-top: 60px;
  text-align: center;
}

/* Terms and Conditions Section */
.page-promotions__terms-section {
  padding: 80px 0;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  background: var(--card-bg-dark);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  padding-left: 40px;
}

.page-promotions__terms-item::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* Brand Section (adapted for promotions page) */
.page-promotions__brand-section {
  padding: 80px 0;
}