.page-promotions {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Midnight Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f5f5f5;
  --background-dark: #1a1a2e;
  --accent-color: #FF4500; /* OrangeRed for highlights */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-promotions h1, .page-promotions h2, .page-promotions h3, .page-promotions h4, .page-promotions h5, .page-promotions h6 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions h1 {
  font-size: 3.2em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions h2 {
  font-size: 2.5em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-promotions h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

.page-promotions p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-promotions ul li {
  background: var(--background-light);
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.page-promotions ul li p {
  margin: 0;
  padding-left: 10px;
}

.page-promotions ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-promotions ol li {
  margin-bottom: 15px;
}

.page-promotions ol li h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.page-promotions a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions a:hover {
  color: var(--accent-color);
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-promotions .cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-promotions .btn-primary:hover {
  background: #000050;
}

.page-promotions .btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #555;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-promotions .btn-secondary:hover {
  background: #777;
}

/* Hero Section */
.page-promotions .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-promotions .hero-container {
  position: relative;
  width: 100%;
  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;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
}

.page-promotions .hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

/* Intro Section */
.page-promotions .intro-section {
  padding: 60px 0;
  background: var(--background-light);
}

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

.page-promotions .promo-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .promo-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions .promo-card p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-promotions .promo-card a {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-promotions .promo-card a:hover {
  color: var(--primary-color);
}

/* Welcome Bonus Section */
.page-promotions .welcome-bonus {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-promotions .welcome-bonus h2 {
  color: var(--primary-color);
}

.page-promotions .welcome-bonus p {
  color: var(--text-light);
}

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

.page-promotions .promo-detail-grid .detail-item {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-promotions .promo-detail-grid .detail-item img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions .promo-detail-grid .detail-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions .promo-detail-grid .detail-item p {
  color: var(--text-light);
  font-size: 1em;
  margin-bottom: 20px;
}

/* Daily Weekly Promo Section */
.page-promotions .daily-weekly-promo {
  padding: 60px 0;
  background: var(--background-light);
}

.page-promotions .daily-weekly-promo h2 {
  color: var(--secondary-color);
}

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

.page-promotions .promo-grid .promo-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-promotions .promo-grid .promo-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions .promo-grid .promo-item p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* VIP Program Section */
.page-promotions .vip-program {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000050 100%);
  color: var(--text-light);
}

.page-promotions .vip-program h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.page-promotions .vip-program p {
  color: var(--text-light);
}

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

.page-promotions .vip-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions .vip-content ul {
  list-style: none;
  padding: 0;
}

.page-promotions .vip-content ul li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 12px 20px;
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
  color: var(--text-light);
}

.page-promotions .vip-content ul li strong {
  color: var(--primary-color);
}

.page-promotions .vip-content ul li p {
  margin: 0;
  color: var(--text-light);
}

/* Special Events Section */
.page-promotions .special-events {
  padding: 60px 0;
  background: var(--background-light);
}

.page-promotions .special-events h2 {
  color: var(--secondary-color);
}

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

.page-promotions .event-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-promotions .event-item img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions .event-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions .event-item p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Terms and Conditions Section */
.page-promotions .terms-conditions {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-promotions .terms-conditions h2 {
  color: var(--primary-color);
}

.page-promotions .terms-conditions p {
  color: var(--text-light);
}

.page-promotions .terms-conditions ul li {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions .terms-conditions ul li p {
  color: var(--text-light);
}

/* How To Claim Section */
.page-promotions .how-to-claim {
  padding: 60px 0;
  background: var(--background-light);
}

.page-promotions .how-to-claim h2 {
  color: var(--secondary-color);
}

.page-promotions .how-to-claim ol li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions .how-to-claim ol li h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-top: 0;
}

/* Why Choose Section */
.page-promotions .why-choose {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-promotions .why-choose h2 {
  color: var(--primary-color);
}

.page-promotions .why-choose p {
  color: var(--text-light);
}

.page-promotions .why-choose ul li {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions .why-choose ul li strong {
  color: var(--primary-color);
}

.page-promotions .why-choose ul li p {
  color: var(--text-light);
}

/* FAQ Section */
.page-promotions .faq-section {
  padding: 60px 0;
  background: var(--background-light);
}

.page-promotions .faq-section h2 {
  color: var(--secondary-color);
}

.page-promotions .faq-list {
  margin-top: 30px;
}

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
  background: #f0f0f0;
}

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--secondary-color);
}

.page-promotions .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

/* Final CTA Section */
.page-promotions .cta-final {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--text-light);
}

.page-promotions .cta-final h2 {
  color: var(--text-light);
  font-size: 2.8em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions .cta-final p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 20px auto 40px auto;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions h1 {
    font-size: 2.8em;
  }
  .page-promotions h2 {
    font-size: 2em;
  }
  .page-promotions h3 {
    font-size: 1.6em;
  }
  .page-promotions .vip-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions .vip-content img {
    max-width: 100%;
  }
  .page-promotions .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-promotions .hero-content h1 {
    font-size: 2.2em;
  }
  .page-promotions .hero-content p {
    font-size: 1.1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .intro-section, .page-promotions .welcome-bonus, .page-promotions .daily-weekly-promo, .page-promotions .vip-program, .page-promotions .special-events, .page-promotions .terms-conditions, .page-promotions .how-to-claim, .page-promotions .why-choose, .page-promotions .faq-section, .page-promotions .cta-final {
    padding: 40px 0;
  }
  .page-promotions .promo-overview, .page-promotions .promo-detail-grid, .page-promotions .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions .promo-card, .page-promotions .promo-detail-grid .detail-item, .page-promotions .promo-grid .promo-item, .page-promotions .event-item {
    padding: 20px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-promotions .cta-final h2 {
    font-size: 2em;
  }
  .page-promotions .cta-final p {
    font-size: 1em;
  }
  .page-promotions .how-to-claim ol li {
    padding: 15px;
  }
  .page-promotions .how-to-claim ol li h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.6em;
  }
  .page-promotions h3 {
    font-size: 1.3em;
  }
  .page-promotions .hero-content p {
    font-size: 0.9em;
  }
  .page-promotions .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-promotions .vip-content ul li {
    padding: 10px 15px;
  }
}