.page-game-reviews-slot-provider-introduction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main primary background color */
}

.page-game-reviews-slot-provider-introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-slot-provider-introduction__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-reviews-slot-provider-introduction__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-game-reviews-slot-provider-introduction__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
}

.page-game-reviews-slot-provider-introduction__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  opacity: 0.3;
  z-index: 0;
}

.page-game-reviews-slot-provider-introduction__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  z-index: 1;
  position: relative;
  margin: 10px;
}

.page-game-reviews-slot-provider-introduction__btn--primary {
  background-color: #FFD700; /* Gold accent */
  color: #0A2463; /* Dark blue text */
}

.page-game-reviews-slot-provider-introduction__btn--primary:hover {
  background-color: #E0B500; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-reviews-slot-provider-introduction__btn--secondary {
  background-color: #007bff; /* A bright blue for secondary action */
  color: #FFFFFF;
}

.page-game-reviews-slot-provider-introduction__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-game-reviews-slot-provider-introduction__btn--outline {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-game-reviews-slot-provider-introduction__btn--outline:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-game-reviews-slot-provider-introduction__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-game-reviews-slot-provider-introduction__section {
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-slot-provider-introduction__section--dark-bg {
  background-color: #0A2463; /* Primary dark blue */
  color: #E0E0E0;
}

.page-game-reviews-slot-provider-introduction__section--cta-bg {
  background: linear-gradient(90deg, #0A2463, #1A3E8A); /* Dark blue gradient */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slot-provider-introduction__cta-content {
  position: relative;
  z-index: 1;
}

.page-game-reviews-slot-provider-introduction__cta-image {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 600px;
  opacity: 0.2;
  z-index: 0;
}

.page-game-reviews-slot-provider-introduction__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-reviews-slot-provider-introduction__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-reviews-slot-provider-introduction__final-cta-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-reviews-slot-provider-introduction__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slot-provider-introduction__text--center {
  text-align: center;
}

.page-game-reviews-slot-provider-introduction__list,
.page-game-reviews-slot-provider-introduction__benefits-list,
.page-game-reviews-slot-provider-introduction__responsible-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-game-reviews-slot-provider-introduction__list li,
.page-game-reviews-slot-provider-introduction__benefits-list li,
.page-game-reviews-slot-provider-introduction__responsible-list li {
  background-color: #1A3E8A; /* Darker blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 50px;
}

.page-game-reviews-slot-provider-introduction__list li::before,
.page-game-reviews-slot-provider-introduction__benefits-list li::before,
.page-game-reviews-slot-provider-introduction__responsible-list li::before {
  content: '✔';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-game-reviews-slot-provider-introduction__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-provider-introduction__grid-item {
  background-color: #1A3E8A; /* Darker blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-provider-introduction__grid-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-provider-introduction__grid-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-reviews-slot-provider-introduction__grid-text {
  color: #CCCCCC;
  font-size: 1em;
}

.page-game-reviews-slot-provider-introduction__security-image {
  width: 80%;
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-provider-introduction__provider-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-provider-introduction__provider-card {
  background-color: #1A3E8A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-provider-introduction__provider-card:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-provider-introduction__card-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-game-reviews-slot-provider-introduction__card-text {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 10px;
}

.page-game-reviews-slot-provider-introduction__provider-logos {
  width: 90%;
  max-width: 900px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-provider-introduction__cta-text {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slot-provider-introduction__cta-buttons {
  margin-top: 30px;
}

.page-game-reviews-slot-provider-introduction__game-screenshots {
  width: 90%;
  max-width: 1000px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-provider-introduction__steps-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-game-reviews-slot-provider-introduction__steps-list li {
  background-color: #1A3E8A;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-slot-provider-introduction__steps-list li h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews-slot-provider-introduction__steps-list li p {
  color: #CCCCCC;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-game-reviews-slot-provider-introduction__mobile-image {
  width: 70%;
  max-width: 500px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-provider-introduction__responsible-image {
  width: 80%;
  max-width: 700px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-slot-provider-introduction__section--final-cta {
  background: linear-gradient(45deg, #0A2463, #3A5B9B);
  padding: 100px 0;
  color: #E0E0E0;
}

.page-game-reviews-slot-provider-introduction__final-cta-text {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-slot-provider-introduction .highlight {
  color: #FFD700;
}

.page-game-reviews-slot-provider-introduction .keyword {
  font-weight: bold;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-reviews-slot-provider-introduction__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-slot-provider-introduction__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-slot-provider-introduction__section-title,
  .page-game-reviews-slot-provider-introduction__cta-title,
  .page-game-reviews-slot-provider-introduction__final-cta-title {
    font-size: 2.2em;
  }
  .page-game-reviews-slot-provider-introduction__text,
  .page-game-reviews-slot-provider-introduction__list li,
  .page-game-reviews-slot-provider-introduction__benefits-list li,
  .page-game-reviews-slot-provider-introduction__responsible-list li {
    font-size: 1em;
  }
  .page-game-reviews-slot-provider-introduction__cta-image {
    width: 50%;
    right: -15%;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-slot-provider-introduction__hero-section {
    padding: 80px 0;
  }
  .page-game-reviews-slot-provider-introduction__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-slot-provider-introduction__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-slot-provider-introduction__section-title,
  .page-game-reviews-slot-provider-introduction__cta-title,
  .page-game-reviews-slot-provider-introduction__final-cta-title {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-provider-introduction__grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-slot-provider-introduction__provider-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-slot-provider-introduction__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-game-reviews-slot-provider-introduction__cta-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-slot-provider-introduction__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-slot-provider-introduction__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-slot-provider-introduction__section-title,
  .page-game-reviews-slot-provider-introduction__cta-title,
  .page-game-reviews-slot-provider-introduction__final-cta-title {
    font-size: 1.5em;
  }
  .page-game-reviews-slot-provider-introduction__btn {
    padding: 10px 20px;
    font-size: 0.8em;
  }
  .page-game-reviews-slot-provider-introduction__list li,
  .page-game-reviews-slot-provider-introduction__benefits-list li,
  .page-game-reviews-slot-provider-introduction__responsible-list li {
    padding: 15px 15px 15px 45px;
  }
  .page-game-reviews-slot-provider-introduction__list li::before,
  .page-game-reviews-slot-provider-introduction__benefits-list li::before,
  .page-game-reviews-slot-provider-introduction__responsible-list li::before {
    font-size: 1.2em;
    left: 10px;
  }
}