.page-game-providers-evolution-gaming {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #1A1A1A; /* Dark background */
}

.page-game-providers-evolution-gaming__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-providers-evolution-gaming__hero {
  position: relative;
  background: linear-gradient(135deg, #8B0000 0%, #330000 100%); /* Dark red gradient */
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-game-providers-evolution-gaming__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.page-game-providers-evolution-gaming__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  font-weight: bold;
}

.page-game-providers-evolution-gaming__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-game-providers-evolution-gaming__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-game-providers-evolution-gaming__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-game-providers-evolution-gaming__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
}

.page-game-providers-evolution-gaming__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  border-color: #e6c200;
}

.page-game-providers-evolution-gaming__btn--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page-game-providers-evolution-gaming__btn--secondary:hover {
  background-color: #a00000;
  color: #ffe033;
  border-color: #a00000;
}

.page-game-providers-evolution-gaming__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-game-providers-evolution-gaming__intro-section,
.page-game-providers-evolution-gaming__features-section,
.page-game-providers-evolution-gaming__game-showcase,
.page-game-providers-evolution-gaming__why-88king,
.page-game-providers-evolution-gaming__how-to-start {
  padding: 60px 0;
  background-color: #282828; /* Slightly lighter dark background */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-game-providers-evolution-gaming__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-game-providers-evolution-gaming__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-providers-evolution-gaming__feature-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-providers-evolution-gaming__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-providers-evolution-gaming__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-providers-evolution-gaming__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-providers-evolution-gaming__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-game-providers-evolution-gaming__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-providers-evolution-gaming__game-card {
  background-color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-providers-evolution-gaming__game-card:hover {
  transform: translateY(-10px);
}

.page-game-providers-evolution-gaming__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-game-providers-evolution-gaming__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-game-providers-evolution-gaming__game-description {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
  padding: 0 15px 20px;
}

.page-game-providers-evolution-gaming__game-card .page-game-providers-evolution-gaming__btn {
  margin-bottom: 20px;
}

.page-game-providers-evolution-gaming__benefits-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-game-providers-evolution-gaming__benefits-list li {
  font-size: 1.2em;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
}

.page-game-providers-evolution-gaming__benefit-icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #FFD700; /* Gold checkmark */
  line-height: 1;
}

.page-game-providers-evolution-gaming__cta-banner {
  background-color: #333333;
  border-radius: 10px;
  padding: 40px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-game-providers-evolution-gaming__cta-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-game-providers-evolution-gaming__cta-content {
  flex-grow: 1;
}

.page-game-providers-evolution-gaming__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-providers-evolution-gaming__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #CCCCCC;
  margin-bottom: 25px;
}

.page-game-providers-evolution-gaming__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  counter-reset: step-counter;
}

.page-game-providers-evolution-gaming__steps-list li {
  background-color: #333333;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  position: relative;
  counter-increment: step-counter;
}

.page-game-providers-evolution-gaming__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #8B0000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-providers-evolution-gaming__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding-left: 30px; /* Space for the counter */
}

.page-game-providers-evolution-gaming__step-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #CCCCCC;
  padding-left: 30px;
}

.page-game-providers-evolution-gaming__final-cta {
  text-align: center;
  font-size: 1.3em;
  margin-top: 50px;
  color: #E0E0E0;
}

.page-game-providers-evolution-gaming__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-providers-evolution-gaming__text-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-providers-evolution-gaming__hero-title {
    font-size: 3em;
  }
  .page-game-providers-evolution-gaming__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-providers-evolution-gaming__section-title {
    font-size: 2.2em;
  }
  .page-game-providers-evolution-gaming__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-game-providers-evolution-gaming__cta-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-providers-evolution-gaming__hero {
    padding: 80px 0;
  }
  .page-game-providers-evolution-gaming__hero-title {
    font-size: 2.5em;
  }
  .page-game-providers-evolution-gaming__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-providers-evolution-gaming__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-providers-evolution-gaming__section-title {
    font-size: 1.8em;
  }
  .page-game-providers-evolution-gaming__intro-section,
  .page-game-providers-evolution-gaming__features-section,
  .page-game-providers-evolution-gaming__game-showcase,
  .page-game-providers-evolution-gaming__why-88king,
  .page-game-providers-evolution-gaming__how-to-start {
    padding: 40px 0;
  }
  .page-game-providers-evolution-gaming__features-grid,
  .page-game-providers-evolution-gaming__game-grid {
    grid-template-columns: 1fr;
  }
  .page-game-providers-evolution-gaming__feature-item,
  .page-game-providers-evolution-gaming__game-card {
    margin: 0 10px;
  }
  .page-game-providers-evolution-gaming__steps-list li {
    padding-left: 40px;
  }
  .page-game-providers-evolution-gaming__steps-list li::before {
    left: 10px;
  }
  .page-game-providers-evolution-gaming__step-title,
  .page-game-providers-evolution-gaming__step-description {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .page-game-providers-evolution-gaming__hero-title {
    font-size: 2em;
  }
  .page-game-providers-evolution-gaming__hero-subtitle {
    font-size: 1em;
  }
  .page-game-providers-evolution-gaming__cta-title {
    font-size: 1.8em;
  }
  .page-game-providers-evolution-gaming__cta-description {
    font-size: 0.95em;
  }
  .page-game-providers-evolution-gaming__final-cta {
    font-size: 1.1em;
  }
}