/* style/slot-games-providers-analysis.css */

/* Variables */
:root {
  --primary-color: #0A192F;
  --accent-color: #FFD700;
  --text-light: #F0F2F5;
  --text-dark: #1A1A1A;
  --bg-light: #FFFFFF;
  --bg-dark: #0A192F;
  --gray-medium: #6B7280;
}

.page-slot-games-providers-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-slot-games-providers-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games-providers-analysis__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a345e 100%);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-providers-analysis__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-slot-games-providers-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games-providers-analysis__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-providers-analysis__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--text-light);
}

.page-slot-games-providers-analysis__button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-slot-games-providers-analysis__button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slot-games-providers-analysis__introduction-section,
.page-slot-games-providers-analysis__key-providers-section,
.page-slot-games-providers-analysis__analysis-criteria-section,
.page-slot-games-providers-analysis__888slot-perspective-section,
.page-slot-games-providers-analysis__faq-section,
.page-slot-games-providers-analysis__cta-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-slot-games-providers-analysis__introduction-section p,
.page-slot-games-providers-analysis__888slot-perspective-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-slot-games-providers-analysis__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slot-games-providers-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.page-slot-games-providers-analysis__provider-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 350px; /* Ensure cards have similar height */
}

.page-slot-games-providers-analysis__provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games-providers-analysis__provider-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.page-slot-games-providers-analysis__provider-card:hover .page-slot-games-providers-analysis__provider-logo {
  filter: grayscale(0%);
}

.page-slot-games-providers-analysis__provider-name {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-slot-games-providers-analysis__provider-description {
  font-size: 1em;
  color: var(--gray-medium);
  text-align: left;
}

.page-slot-games-providers-analysis__analysis-criteria-section {
  background-color: #f8f9fa;
}

.page-slot-games-providers-analysis__criteria-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-providers-analysis__criteria-list li {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-slot-games-providers-analysis__criteria-list li:hover {
  transform: translateY(-5px);
}

.page-slot-games-providers-analysis__criteria-heading {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-slot-games-providers-analysis__criteria-list p {
  color: var(--gray-medium);
}

.page-slot-games-providers-analysis__image--full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games-providers-analysis__888slot-perspective-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-slot-games-providers-analysis__888slot-perspective-section .page-slot-games-providers-analysis__section-title {
  color: var(--accent-color);
}

.page-slot-games-providers-analysis__888slot-perspective-section .page-slot-games-providers-analysis__section-title::after {
  background-color: var(--text-light);
}

.page-slot-games-providers-analysis__888slot-perspective-section p {
  color: var(--text-light);
}

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

.page-slot-games-providers-analysis__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-slot-games-providers-analysis__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-providers-analysis__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--accent-color));
}

.page-slot-games-providers-analysis__feature-title {
  font-size: 1.8em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.page-slot-games-providers-analysis__feature-item p {
  color: var(--text-light);
}

.page-slot-games-providers-analysis__faq-section {
  background-color: var(--bg-light);
}

.page-slot-games-providers-analysis__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-slot-games-providers-analysis__faq-item:last-child {
  border-bottom: none;
}

.page-slot-games-providers-analysis__faq-question {
  font-size: 1.4em;
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.page-slot-games-providers-analysis__faq-question:hover {
  color: var(--accent-color);
}

.page-slot-games-providers-analysis__faq-answer {
  font-size: 1.1em;
  color: var(--gray-medium);
  padding-left: 20px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-slot-games-providers-analysis__faq-answer.active {
  display: block;
}

.page-slot-games-providers-analysis__cta-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-slot-games-providers-analysis__cta-section .page-slot-games-providers-analysis__section-title {
  color: var(--accent-color);
}

.page-slot-games-providers-analysis__cta-section .page-slot-games-providers-analysis__section-title::after {
  background-color: var(--text-light);
}

.page-slot-games-providers-analysis__cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-slot-games-providers-analysis__button--secondary {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-slot-games-providers-analysis__button--secondary:hover {
  background-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-slot-games-providers-analysis__main-title {
    font-size: 2.5em;
  }

  .page-slot-games-providers-analysis__subtitle {
    font-size: 1.2em;
  }

  .page-slot-games-providers-analysis__section-title {
    font-size: 2em;
  }

  .page-slot-games-providers-analysis__provider-grid,
  .page-slot-games-providers-analysis__criteria-list,
  .page-slot-games-providers-analysis__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games-providers-analysis__hero-section {
    padding: 80px 0 150px;
  }

  .page-slot-games-providers-analysis__hero-image {
    height: 100%;
    bottom: -50px;
    top: auto;
  }
}

@media (max-width: 480px) {
  .page-slot-games-providers-analysis__main-title {
    font-size: 2em;
  }

  .page-slot-games-providers-analysis__subtitle {
    font-size: 1em;
  }

  .page-slot-games-providers-analysis__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slot-games-providers-analysis__introduction-section,
  .page-slot-games-providers-analysis__key-providers-section,
  .page-slot-games-providers-analysis__analysis-criteria-section,
  .page-slot-games-providers-analysis__888slot-perspective-section,
  .page-slot-games-providers-analysis__faq-section,
  .page-slot-games-providers-analysis__cta-section {
    padding: 40px 0;
  }

  .page-slot-games-providers-analysis__section-title {
    font-size: 1.8em;
  }
}