/* style/index-eu9-highlights.css */

.page-index-eu9-highlights {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #1A2B3C; /* Main brand color */
}

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

.page-index-eu9-highlights__hero-section {
  background: linear-gradient(135deg, #1A2B3C 0%, #0c1a29 100%); /* Darker gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-eu9-highlights__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-eu9-highlights__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-eu9-highlights__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-index-eu9-highlights__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A2B3C; /* Dark text for accent background */
  border: 2px solid #FFD700;
}

.page-index-eu9-highlights__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-eu9-highlights__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent text for dark background */
  border: 2px solid #FFD700;
}

.page-index-eu9-highlights__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-3px);
}

.page-index-eu9-highlights__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-eu9-highlights__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-index-eu9-highlights__section-intro {
  font-size: 1.15em;
  color: #c0c0c0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-eu9-highlights__highlight-text {
  color: #FFD700;
}

.page-index-eu9-highlights__feature-grid, .page-index-eu9-highlights__game-categories, .page-index-eu9-highlights__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-eu9-highlights__feature-card, .page-index-eu9-highlights__game-card, .page-index-eu9-highlights__promo-card {
  background-color: #2a3e52; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-eu9-highlights__feature-card:hover, .page-index-eu9-highlights__game-card:hover, .page-index-eu9-highlights__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.page-index-eu9-highlights__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-eu9-highlights__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-eu9-highlights__card-description {
  font-size: 1em;
  color: #c0c0c0;
  flex-grow: 1;
}

.page-index-eu9-highlights__mt-40 {
  margin-top: 40px;
}

.page-index-eu9-highlights__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-eu9-highlights__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2B3C;
}

.page-index-eu9-highlights__game-img, .page-index-eu9-highlights__promo-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-eu9-highlights__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-eu9-highlights__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-index-eu9-highlights__security-payment {
  background-color: #1A2B3C;
}

.page-index-eu9-highlights__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.page-index-eu9-highlights__text-content {
  flex: 2;
  min-width: 300px;
}

.page-index-eu9-highlights__image-wrapper {
  flex: 1;
  min-width: 280px;
}

.page-index-eu9-highlights__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-eu9-highlights__sub-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-eu9-highlights__payment-methods {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-index-eu9-highlights__payment-methods li {
  display: flex;
  align-items: center;
  background-color: #2a3e52;
  padding: 10px 20px;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1em;
}

.page-index-eu9-highlights__payment-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: brightness(1.2);
}

.page-index-eu9-highlights__mt-20 {
  margin-top: 20px;
}

.page-index-eu9-highlights__app-download {
  background-color: #1A2B3C;
  position: relative;
  overflow: hidden;
}

.page-index-eu9-highlights__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-eu9-highlights__app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-eu9-highlights__app-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-eu9-highlights__app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-index-eu9-highlights__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-index-eu9-highlights__app-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-index-eu9-highlights__benefit-icon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-eu9-highlights__responsible-gambling {
  background-color: #2a3e52;
}

.page-index-eu9-highlights__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-index-eu9-highlights__responsibility-list li {
  display: flex;
  align-items: center;
  background-color: #1A2B3C;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1em;
  color: #f0f0f0;
}

.page-index-eu9-highlights__responsibility-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(30deg) brightness(1.2);
}

.page-index-eu9-highlights__responsibility-cta {
  margin-top: 40px;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-index-eu9-highlights__cta-final {
  background-color: #1A2B3C;
  padding: 100px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-index-eu9-highlights__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-eu9-highlights__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-eu9-highlights__btn--large {
  padding: 18px 40px;
  font-size: 1.25em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-eu9-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-index-eu9-highlights__section-title {
    font-size: 2.2em;
  }
  .page-index-eu9-highlights__content-wrapper, .page-index-eu9-highlights__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-eu9-highlights__text-content, .page-index-eu9-highlights__app-text {
    order: 2;
  }
  .page-index-eu9-highlights__image-wrapper, .page-index-eu9-highlights__app-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-index-eu9-highlights__payment-methods, .page-index-eu9-highlights__responsibility-list {
    justify-content: center;
  }
  .page-index-eu9-highlights__app-benefits {
    text-align: center;
  }
  .page-index-eu9-highlights__app-benefits li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-eu9-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-eu9-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-eu9-highlights__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-eu9-highlights__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-eu9-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-eu9-highlights__section-intro {
    font-size: 1em;
  }
  .page-index-eu9-highlights__feature-grid, .page-index-eu9-highlights__game-categories, .page-index-eu9-highlights__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-eu9-highlights__cta-title {
    font-size: 2.2em;
  }
  .page-index-eu9-highlights__cta-description {
    font-size: 1em;
  }
  .page-index-eu9-highlights__btn--large {
    width: 90%;
  }
}