.page-promotions {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson Red */
  --dark-background: #1a1a1a;
  --text-light: #ffffff;
  --text-dark: #333333;
  --card-background: #2a2a2a;
  --border-color: #333333;
  --hover-gold: #e6c200;
  --hover-red: #c21237;
}

.page-promotions.page-content {
  background-color: var(--dark-background);
  color: var(--text-light);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-promotions section {
  padding: 60px 0;
  text-align: center;
}

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

.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions h1 {
  font-size: 3.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-promotions h2 {
  font-size: 2.5em;
  margin-top: 30px;
}

.page-promotions h3 {
  font-size: 1.8em;
  color: var(--text-light);
  margin-top: 25px;
}

.page-promotions p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.page-promotions .cta-button.primary {
  background-color: var(--primary-color);
  color: var(--dark-background);
}

.page-promotions .cta-button.primary:hover {
  background-color: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions .cta-button.secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-promotions .cta-button.secondary:hover {
  background-color: var(--hover-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions .cta-button.tertiary {
  background-color: var(--card-background);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.page-promotions .cta-button.tertiary:hover {
  background-color: var(--primary-color);
  color: var(--dark-background);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions .cta-button.small {
  padding: 10px 25px;
  font-size: 0.95em;
  margin-top: 15px;
}

.page-promotions .cta-button.large {
  padding: 18px 50px;
  font-size: 1.3em;
}

/* 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: 80px 20px;
  overflow: hidden;
  background-color: #000;
}

.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;
  position: relative;
  z-index: 1;
}

.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%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly */
}

.page-promotions .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions .hero-content p {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Section Intro & General Content */
.page-promotions .section-intro img, 
.page-promotions .section-deposit-bonus img, 
.page-promotions .section-cashback img, 
.page-promotions .section-game-specific img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-promotions ul li {
  background-color: var(--card-background);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  border-left: 5px solid var(--primary-color);
  font-size: 1.05em;
  color: #f0f0f0;
}

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

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

.page-promotions .bonus-card {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border-top: 5px solid var(--secondary-color);
}

.page-promotions .bonus-card h3 {
  color: var(--secondary-color);
  margin-top: 0;
}

/* Cashback List */
.page-promotions .cashback-list ul li {
  border-left: 5px solid var(--secondary-color);
}

/* Game Promo Grid */
.page-promotions .game-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions .game-promo-card {
  background-color: var(--card-background);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions .game-promo-card h3 {
  color: var(--primary-color);
  margin-top: 0;
  font-size: 1.6em;
}

.page-promotions .game-promo-card p {
  font-size: 0.95em;
  color: #bbbbbb;
}

/* Step-by-step */
.page-promotions .step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions .step-item {
  background-color: var(--card-background);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  border-bottom: 5px solid var(--primary-color);
}

.page-promotions .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--dark-background);
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: -55px auto 20px auto; /* Adjust to place above card */
  border: 4px solid var(--dark-background);
}

.page-promotions .step-item h3 {
  margin-top: 15px;
  color: var(--primary-color);
}

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

.page-promotions .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

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

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

.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-color: #1f1f1f; /* Darker background for answer */
  color: #cccccc;
  font-size: 1.05em;
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.page-promotions .faq-answer p {
  margin-bottom: 0;
  color: #cccccc;
}

/* Call to Action Bottom */
.page-promotions .section-cta-bottom {
  background: linear-gradient(135deg, var(--secondary-color), #8b0000);
  padding: 80px 20px;
}

.page-promotions .section-cta-bottom h2 {
  color: var(--text-light);
  font-size: 3em;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions .section-cta-bottom p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions h1 {
    font-size: 2.8em;
  }
  .page-promotions h2 {
    font-size: 2em;
  }
  .page-promotions .hero-content h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-promotions section {
    padding: 40px 0;
  }
  .page-promotions h1 {
    font-size: 2.2em;
  }
  .page-promotions h2 {
    font-size: 1.8em;
  }
  .page-promotions h3 {
    font-size: 1.5em;
  }
  .page-promotions p {
    font-size: 1em;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions .hero-content h1 {
    font-size: 2.5em;
  }
  .page-promotions .hero-content p {
    font-size: 1.05em;
  }
  .page-promotions .hero-image img {
    border-radius: 4px;
  }
  .page-promotions .bonus-grid, .page-promotions .game-promo-grid, .page-promotions .step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions .step-number {
    margin-top: -40px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-answer {
    padding: 15px 20px;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.5em;
  }
  .page-promotions .hero-content h1 {
    font-size: 2em;
  }
  .page-promotions .hero-content p {
    font-size: 0.95em;
  }
  .page-promotions .cta-button.large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 1.8em;
  }
}