.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #000000;
  line-height: 1.6;
}

.page-promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-promotions-hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background-color: #000000; /* Fallback */
}

.page-promotions-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-promotions-hero .page-promotions-container {
  position: relative;
  z-index: 2;
  color: #FFD700;
}

.page-promotions-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-promotions-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-promotions-btn-primary {
  background-color: #FFD700;
  color: #000000;
}

.page-promotions-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-btn-secondary {
  background-color: #333333;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-promotions-btn-secondary:hover {
  background-color: #555555;
  transform: translateY(-2px);
}

.page-promotions-btn-large {
  font-size: 1.3em;
  padding: 15px 40px;
}

.page-promotions-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333333;
}

.page-promotions-section:nth-of-type(even) {
  background-color: #000000;
}

.page-promotions-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

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

.page-promotions-card {
  background-color: #0e0e0e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-card p {
  color: #CCCCCC;
  margin-bottom: 15px;
}

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

.page-promotions-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #CCCCCC;
}

.page-promotions-list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-promotions-promo-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;
}

.page-promotions-terms-list li {
    font-size: 0.95em;
}

.page-promotions-why-list li::before {
    content: '★';
}

.page-promotions-cta-section {
  background: linear-gradient(135deg, #000000, #333333);
  padding: 80px 0;
  text-align: center;
}

.page-promotions-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promotions-cta-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-hero {
    padding: 80px 0;
  }

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

  .page-promotions-hero-description {
    font-size: 1em;
  }

  .page-promotions-section-title {
    font-size: 2em;
  }

  .page-promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-card {
    padding: 20px;
  }

  .page-promotions-card-title {
    font-size: 1.3em;
  }

  .page-promotions-btn-large {
    font-size: 1.1em;
    padding: 12px 30px;
  }

  .page-promotions-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-hero {
    padding: 60px 0;
  }

  .page-promotions-hero-title {
    font-size: 2em;
  }

  .page-promotions-hero-description {
    font-size: 0.9em;
  }

  .page-promotions-section {
    padding: 40px 0;
  }

  .page-promotions-section-title {
    font-size: 1.8em;
  }

  .page-promotions-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-promotions-cta-title {
    font-size: 1.8em;
  }
  .page-promotions-promo-image {
      border-width: 1px;
  }
}