/* style/slots-games-providers.css */
.page-slots-games-providers {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #121f30; /* Slightly lighter than primary for main content background */
}

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

.page-slots-games-providers__hero-section {
  background: linear-gradient(135deg, #1A2B47, #0d1a2e); /* Darker gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-providers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Highlight with gold */
}

.page-slots-games-providers__hero-title .highlight {
  color: #ffffff;
}

.page-slots-games-providers__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-slots-games-providers__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-slots-games-providers__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;
  cursor: pointer;
  border: none;
}

.page-slots-games-providers__btn--primary {
  background-color: #FFD700;
  color: #1A2B47;
}

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

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

.page-slots-games-providers__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47;
  transform: translateY(-2px);
}

.page-slots-games-providers__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-slots-games-providers__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-slots-games-providers__icon {
  margin-left: 8px;
}

.page-slots-games-providers__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  font-weight: bold;
}

.page-slots-games-providers__section-title .highlight {
  color: #ffffff;
}

.page-slots-games-providers__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #cccccc;
}

.page-slots-games-providers__intro-section {
  padding: 60px 0;
  background-color: #1A2B47;
  text-align: center;
}

.page-slots-games-providers__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-slots-games-providers__providers-list {
  padding: 80px 0;
  background-color: #121f30;
}

.page-slots-games-providers__provider-card {
  background-color: #1A2B47;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slots-games-providers__provider-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Enhance visibility on dark background */
}

.page-slots-games-providers__provider-name {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-providers__provider-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-slots-games-providers__provider-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  display: inline-block; /* Center the list items */
}

.page-slots-games-providers__provider-features li {
  margin-bottom: 8px;
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-slots-games-providers__provider-features .page-slots-games-providers__icon {
  color: #FFD700;
  margin-right: 10px;
}

.page-slots-games-providers__benefits-section {
  padding: 80px 0;
  background-color: #1A2B47;
}

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

.page-slots-games-providers__benefit-item {
  background-color: #273b5e; /* Slightly lighter blue for contrast */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-providers__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(1.1); /* Gold tint */
}

.page-slots-games-providers__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-providers__benefit-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-slots-games-providers__cta-section {
  background: linear-gradient(45deg, #1A2B47, #0d1a2e);
  padding: 80px 0;
  text-align: center;
}

.page-slots-games-providers__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-slots-games-providers__faq-section {
  padding: 80px 0;
  background-color: #121f30;
}

.page-slots-games-providers__faq-item {
  background-color: #1A2B47;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-providers__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games-providers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-slots-games-providers__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-games-providers__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-slots-games-providers__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-providers__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-providers__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-providers__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-providers__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games-providers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-providers__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots-games-providers__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-providers__text-content {
    font-size: 1em;
  }
  .page-slots-games-providers__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-providers__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-providers__provider-card {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-slots-games-providers__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-providers__hero-description {
    font-size: 0.9em;
  }
  .page-slots-games-providers__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-slots-games-providers__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-providers__faq-question {
    font-size: 1.1em;
  }
}