.page-promotions {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Black */
  --text-light: #E0E0E0;
  --text-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --background-dark: #222222;
  --accent-color: #FFA500; /* Orange for highlight */
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* 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-color: var(--secondary-color);
  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;
}

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

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

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

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

.page-promotions .cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-promotions section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions section:nth-of-type(even) {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-promotions section h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-promotions section:nth-of-type(even) h2 {
  color: var(--primary-color);
}

.page-promotions section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-promotions section:nth-of-type(even) h3 {
  color: var(--primary-color);
}

.page-promotions section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions section:nth-of-type(even) p {
  color: var(--text-light);
}

.page-promotions .note {
  font-style: italic;
  font-size: 0.95em;
  color: #666;
  margin-top: 30px;
  text-align: center;
}

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

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

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

.page-promotions section:nth-of-type(even) .promo-card {
  background-color: #2E2E2E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

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

.page-promotions section:nth-of-type(even) .promo-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions .promo-card .card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

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

.page-promotions section:nth-of-type(even) .promo-card p {
  color: var(--text-light);
}

.page-promotions .card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions .card-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

/* Daily Offers Section */
.page-promotions .offer-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-promotions .offer-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: var(--text-dark);
}

.page-promotions section:nth-of-type(even) .offer-item {
  background-color: #2E2E2E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

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

.page-promotions .offer-item h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.page-promotions section:nth-of-type(even) .offer-item p {
  color: var(--text-light);
}

.page-promotions .offer-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions .offer-item ul li {
  background-color: var(--background-light);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  font-size: 0.95em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions section:nth-of-type(even) .offer-item ul li {
  background-color: #3A3A3A;
  color: var(--text-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions .offer-item ul li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 10px;
}

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

.page-promotions .game-promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-promotions section:nth-of-type(even) .game-promo-card {
  background-color: #2E2E2E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

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

.page-promotions section:nth-of-type(even) .game-promo-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions .game-promo-card .game-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

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

.page-promotions section:nth-of-type(even) .game-promo-card p {
  color: var(--text-light);
}

/* Special Events Section */
.page-promotions .event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions section:nth-of-type(even) .event-item {
  background-color: #2E2E2E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

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

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

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

.page-promotions section:nth-of-type(even) .event-item p {
  color: var(--text-light);
}

/* Terms and Conditions Section */
.page-promotions .section-terms ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions .section-terms ul li {
  background-color: #FFFFFF;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: var(--text-dark);
  text-align: left;
}

.page-promotions section:nth-of-type(even) .section-terms ul li {
  background-color: #3A3A3A;
  color: var(--text-light);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

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

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

.page-promotions .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions section:nth-of-type(even) .faq-item {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

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

.page-promotions section:nth-of-type(even) .faq-question {
  background-color: #2E2E2E;
  color: var(--text-light);
}

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

.page-promotions section:nth-of-type(even) .faq-question:hover {
  background-color: #3A3A3A;
}

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

.page-promotions section:nth-of-type(even) .faq-question h3 {
  color: var(--text-light);
}

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

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

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

.page-promotions section:nth-of-type(even) .faq-answer {
  background-color: #3A3A3A;
  color: var(--text-light);
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions .faq-answer p {
  margin: 0;
  text-align: left;
  font-size: 1em;
  color: var(--text-dark);
}

.page-promotions section:nth-of-type(even) .faq-answer p {
  color: var(--text-light);
}

/* Join Now Section */
.page-promotions .section-join-now {
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 20px;
}

.page-promotions .section-join-now h2 {
  color: var(--primary-color);
}

.page-promotions .section-join-now p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions h1 {
    font-size: 2.8em;
  }
  .page-promotions section h2 {
    font-size: 2em;
  }
  .page-promotions .promo-card-grid, .page-promotions .offer-details, .page-promotions .game-promo-grid, .page-promotions .event-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions .offer-item ul {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .page-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-promotions h1 {
    font-size: 2.2em;
  }
  .page-promotions .hero-content p {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions section {
    padding: 40px 0;
  }
  .page-promotions section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions section h3 {
    font-size: 1.5em;
  }
  .page-promotions .promo-card, .page-promotions .offer-item, .page-promotions .game-promo-card, .page-promotions .event-item {
    padding: 20px;
  }
  .page-promotions .offer-details {
    grid-template-columns: 1fr;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
  .page-promotions .faq-toggle {
    font-size: 1.5em;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-promotions .section-terms ul, .page-promotions .faq-list {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions section h2 {
    font-size: 1.5em;
  }
  .page-promotions .promo-card-grid, .page-promotions .game-promo-grid, .page-promotions .event-list {
    grid-template-columns: 1fr;
  }
  .page-promotions .promo-card .card-image, .page-promotions .offer-item .offer-image, .page-promotions .game-promo-card .game-image, .page-promotions .event-item .event-image {
    height: 200px;
  }
  .page-promotions .section-join-now {
    padding: 50px 15px;
  }
}