.page-eu9-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #121A26; /* Slightly lighter than main color for body background */
  line-height: 1.6;
}

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

.page-eu9-promotions-hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #0D141F 100%);
  color: #FFD700;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-eu9-promotions-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, rgba(26, 43, 60, 0) 70%);
  opacity: 0.7;
  animation: page-eu9-promotions-hero-pulse 15s infinite alternate;
}

@keyframes page-eu9-promotions-hero-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

.page-eu9-promotions-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-eu9-promotions-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
  position: relative;
  z-index: 1;
}

.page-eu9-promotions-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 40px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
  position: relative;
}

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

.page-eu9-promotions-text-center {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0;
}

.page-eu9-promotions-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-eu9-promotions-btn-primary {
  background-color: #FFD700;
  color: #1A2B3C;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-eu9-promotions-btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-eu9-promotions-btn-secondary {
  background-color: #1A2B3C;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-eu9-promotions-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-eu9-promotions-btn-link {
  background: none;
  color: #FFD700;
  padding: 0;
  margin: 0;
  border: none;
  text-decoration: underline;
  font-size: 1em;
}

.page-eu9-promotions-btn-link:hover {
  color: #E6C200;
  text-decoration: none;
}

.page-eu9-promotions-overview, .page-eu9-promotions-detail-list, .page-eu9-promotions-how-to-claim, .page-eu9-promotions-why-eu9, .page-eu9-promotions-faq, .page-eu9-promotions-cta, .page-eu9-promotions-responsible-gambling {
  padding: 60px 0;
  background-color: #1A2B3C;
  margin-bottom: 20px;
}

.page-eu9-promotions-overview {
  background-color: #0D141F;
}

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

.page-eu9-promotions-card {
  background-color: #1A2B3C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-eu9-promotions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-eu9-promotions-card-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-eu9-promotions-card-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-eu9-promotions-detail-list {
  background-color: #121A26;
}

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

.page-eu9-promotions-list-item {
  background-color: #1A2B3C;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  padding: 25px;
  border-left: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-eu9-promotions-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.page-eu9-promotions-list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-eu9-promotions-list-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-eu9-promotions-list-title a:hover {
  color: #E6C200;
  text-decoration: underline;
}

.page-eu9-promotions-list-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-eu9-promotions-how-to-claim {
  background-color: #0D141F;
}

.page-eu9-promotions-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-eu9-promotions-step-item {
  background-color: #1A2B3C;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 4px solid #FFD700;
}

.page-eu9-promotions-step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-eu9-promotions-step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-eu9-promotions-step-text {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-eu9-promotions-why-eu9 {
  background-color: #1A2B3C;
}

.page-eu9-promotions-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-eu9-promotions-feature-item {
  background-color: #0D141F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-eu9-promotions-feature-item:hover {
  transform: translateY(-5px);
}

.page-eu9-promotions-feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-eu9-promotions-feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-eu9-promotions-feature-text {
  font-size: 0.95em;
  color: #C0C0C0;
}

.page-eu9-promotions-faq {
  background-color: #121A26;
}

.page-eu9-promotions-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-eu9-promotions-accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-eu9-promotions-accordion-header {
  background-color: #1A2B3C;
  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, color 0.3s ease;
  position: relative;
}

.page-eu9-promotions-accordion-header:hover {
  background-color: #2D4054;
}

.page-eu9-promotions-accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-eu9-promotions-accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-eu9-promotions-accordion-content {
  background-color: #0D141F;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-eu9-promotions-accordion-content.active {
  max-height: 200px; /* Adjust based on expected content height */
  padding: 20px 25px;
}

.page-eu9-promotions-accordion-content p {
  color: #C0C0C0;
  font-size: 1em;
  margin: 0;
}

.page-eu9-promotions-cta {
  background: linear-gradient(135deg, #FFD700 0%, #E6C200 100%);
  color: #1A2B3C;
  text-align: center;
  padding: 80px 0;
  border-top: 5px solid #1A2B3C;
  border-bottom: 5px solid #1A2B3C;
}

.page-eu9-promotions-cta .page-eu9-promotions-section-title {
  color: #1A2B3C;
  border-bottom-color: rgba(26, 43, 60, 0.3);
}

.page-eu9-promotions-cta .page-eu9-promotions-section-title::after {
  background-color: #1A2B3C;
}

.page-eu9-promotions-cta .page-eu9-promotions-text-center {
  color: #333;
  margin-bottom: 30px;
}

.page-eu9-promotions-cta .page-eu9-promotions-btn-primary {
  background-color: #1A2B3C;
  color: #FFD700;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-eu9-promotions-cta .page-eu9-promotions-btn-primary:hover {
  background-color: #0D141F;
  color: #FFD700;
}

.page-eu9-promotions-cta .page-eu9-promotions-btn-secondary {
  background-color: #33475c;
  color: #FFD700;
  border-color: #FFD700;
}

.page-eu9-promotions-cta .page-eu9-promotions-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
}

.page-eu9-promotions-responsible-gambling {
  background-color: #0D141F;
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-eu9-promotions-responsible-gambling .page-eu9-promotions-section-title {
  margin-bottom: 20px;
}

.page-eu9-promotions-responsible-gambling .page-eu9-promotions-text-center {
  margin-bottom: 30px;
}

.page-eu9-promotions-responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: grayscale(50%) brightness(120%);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-eu9-promotions-main-title {
    font-size: 2.5em;
  }
  .page-eu9-promotions-hero-description {
    font-size: 1.1em;
  }
  .page-eu9-promotions-section-title {
    font-size: 2em;
  }
  .page-eu9-promotions-grid-3, .page-eu9-promotions-list-grid, .page-eu9-promotions-steps-grid, .page-eu9-promotions-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-eu9-promotions-hero {
    padding: 80px 0;
  }
  .page-eu9-promotions-main-title {
    font-size: 2em;
  }
  .page-eu9-promotions-hero-description {
    font-size: 1em;
  }
  .page-eu9-promotions-section-title {
    font-size: 1.8em;
    margin: 40px 0 30px;
  }
  .page-eu9-promotions-card, .page-eu9-promotions-list-item, .page-eu9-promotions-step-item, .page-eu9-promotions-feature-item {
    padding: 20px;
  }
  .page-eu9-promotions-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-eu9-promotions-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-eu9-promotions-accordion-header::after {
    right: 15px;
  }
  .page-eu9-promotions-accordion-content {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-eu9-promotions-main-title {
    font-size: 1.8em;
  }
  .page-eu9-promotions-hero-description {
    font-size: 0.9em;
  }
  .page-eu9-promotions-section-title {
    font-size: 1.5em;
  }
  .page-eu9-promotions-grid-3, .page-eu9-promotions-list-grid, .page-eu9-promotions-steps-grid, .page-eu9-promotions-feature-grid {
    grid-template-columns: 1fr;
  }
  .page-eu9-promotions-btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}