/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions__section-title {
  color: #FFD700; /* Accent color for titles */
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A1A2E; /* Dark text on accent background */
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #E5C100;
  color: #0F0F1A;
  border-color: #E5C100;
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-promotions__btn--action {
  background-color: #3A3A4E; /* Slightly lighter dark for action */
  color: #FFD700;
  border: 2px solid #3A3A4E;
  margin-left: 10px;
}

.page-promotions__btn--action:hover {
  background-color: #4F4F6A;
  border-color: #4F4F6A;
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #B0B0B0;
  border: 2px solid #B0B0B0;
}

.page-promotions__btn--outline:hover {
  background-color: #B0B0B0;
  color: #1A1A2E;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3A3A4E 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-promotions__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Intro Section */
.page-promotions__intro {
  padding: 80px 0;
  background-color: #252538;
}

.page-promotions__intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions__intro-text {
  flex: 1;
  font-size: 1.1em;
  color: #B0B0B0;
}

.page-promotions__intro-text p {
  margin-bottom: 15px;
}

.page-promotions__intro-image {
  flex: 1;
  text-align: center;
}

.page-promotions__intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Categories Section */
.page-promotions__categories {
  padding: 80px 0;
  background-color: #1A1A2E;
}

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

.page-promotions__category-item {
  background-color: #252538;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__category-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions__category-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions__category-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

/* Detail List Section */
.page-promotions__detail-list {
  padding: 80px 0;
  background-color: #252538;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-promotions__promo-item {
  background-color: #1A1A2E;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions__promo-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promo-item h3 a:hover {
  color: #E5C100;
}

.page-promotions__promo-item p {
  color: #B0B0B0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-item .page-promotions__btn {
  margin-top: 15px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #1A1A2E;
}

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

.page-promotions__step-item {
  background-color: #252538;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-promotions__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A1A2E;
  font-size: 2em;
  font-weight: bold;
  margin: -60px auto 20px auto;
  border: 4px solid #1A1A2E;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promotions__step-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-promotions__step-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-promotions__step-item p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-item p a:hover {
  text-decoration: underline;
}

.page-promotions__cta-bottom {
  text-align: center;
  background-color: #252538;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-bottom img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.page-promotions__cta-bottom p {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-promotions__faq {
  padding: 80px 0;
  background-color: #252538;
}

.page-promotions__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #3A3A4E;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__accordion-header {
  background-color: #3A3A4E;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active {
  background-color: #4F4F6A;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__accordion-content {
  background-color: #1A1A2E;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding: 15px 25px;
}

.page-promotions__accordion-content p {
  color: #B0B0B0;
  margin-bottom: 10px;
}

.page-promotions__accordion-content a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__accordion-content a:hover {
  text-decoration: underline;
}

/* Conclusion Section */
.page-promotions__conclusion {
  padding: 80px 0;
  text-align: center;
  background-color: #1A1A2E;
  border-top: 5px solid #FFD700;
}

.page-promotions__conclusion p {
  font-size: 1.15em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.page-promotions__conclusion p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__conclusion p a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__intro-content {
    flex-direction: column;
  }
  .page-promotions__intro-image {
    margin-top: 40px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-number {
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__category-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-item .page-promotions__btn--action {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .page-promotions__promo-item .page-promotions__btn--secondary {
    width: 100%;
  }
}