/* style/slots-games-providers.css */
.page-slots-games-providers {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-slots-games-providers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slots-games-providers__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-slots-games-providers__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-slots-games-providers__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slots-games-providers__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-slots-games-providers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-slots-games-providers__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.1);
}

.page-slots-games-providers__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  border: none;
}

.page-slots-games-providers__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-providers__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-slots-games-providers__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-slots-games-providers__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-slots-games-providers__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-slots-games-providers__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-slots-games-providers__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slots-games-providers__introduction,
.page-slots-games-providers__featured-providers,
.page-slots-games-providers__benefits,
.page-slots-games-providers__how-to-play,
.page-slots-games-providers__promotions,
.page-slots-games-providers__conclusion {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-slots-games-providers__introduction {
  padding-top: 20px;
}

.page-slots-games-providers__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-slots-games-providers__provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-providers__provider-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots-games-providers__provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games-providers__provider-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 25px;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.page-slots-games-providers__provider-card:hover .page-slots-games-providers__provider-logo {
  filter: grayscale(0%);
}

.page-slots-games-providers__provider-name {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-slots-games-providers__provider-description {
  font-size: 1em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slots-games-providers__mobile-gaming-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games-providers__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slots-games-providers__benefits-list li {
  background-color: #e9f5ff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-games-providers__list-icon {
  font-size: 1.5em;
  color: #007bff;
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
}

.page-slots-games-providers__list-title {
  font-size: 1.15em;
  color: #333;
}

.page-slots-games-providers__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games-providers__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-slots-games-providers__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  color: #555;
}

.page-slots-games-providers__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007bff;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slots-games-providers__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-slots-games-providers__promo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 50px auto 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-games-providers__conclusion .page-slots-games-providers__text-content {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-providers__hero {
    padding: 60px 0;
  }
  .page-slots-games-providers__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-providers__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-providers__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-providers__provider-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-games-providers__hero {
    padding: 50px 0;
  }
  .page-slots-games-providers__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-providers__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-games-providers__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-slots-games-providers__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-slots-games-providers__introduction,
  .page-slots-games-providers__featured-providers,
  .page-slots-games-providers__benefits,
  .page-slots-games-providers__how-to-play,
  .page-slots-games-providers__promotions,
  .page-slots-games-providers__conclusion {
    padding: 40px 0;
  }
  .page-slots-games-providers__text-content {
    font-size: 1em;
  }
  .page-slots-games-providers__provider-name {
    font-size: 1.3em;
  }
  .page-slots-games-providers__benefits-list li {
    padding: 15px;
  }
  .page-slots-games-providers__steps-list li {
    padding-left: 45px;
  }
  .page-slots-games-providers__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-slots-games-providers__hero-title {
    font-size: 1.5em;
  }
  .page-slots-games-providers__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-slots-games-providers__section-title {
    font-size: 1.4em;
  }
  .page-slots-games-providers__provider-grid {
    grid-template-columns: 1fr;
  }
}