/* style/games-slot-games.css */
:root {
  --mm99-primary-color: #0A1931;
  --mm99-secondary-color: #FFD700;
  --mm99-text-light: #F8F8F8;
  --mm99-text-dark: #1A1A1A;
  --mm99-bg-light: #E0E0E0;
  --mm99-bg-dark: #07101F;
  --mm99-border-color: #334057;
}

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

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

.page-games-slot-games__section-title {
  font-size: 2.5em;
  color: var(--mm99-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

.page-games-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--mm99-secondary-color);
  margin: 10px auto 0;
}

.page-games-slot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  color: var(--mm99-text-light);
  margin-bottom: 50px;
}

.page-games-slot-games__hero {
  background: linear-gradient(135deg, var(--mm99-primary-color) 0%, #2A3B5B 100%);
  padding: 100px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:slot_games_hero,abstract_lights,mm99_background]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-games-slot-games__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-games-slot-games__hero-title {
  font-size: 3.8em;
  color: var(--mm99-secondary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-games-slot-games__hero-description {
  font-size: 1.3em;
  color: var(--mm99-text-light);
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-games-slot-games__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;
  text-align: center;
}

.page-games-slot-games__btn--primary {
  background-color: var(--mm99-secondary-color);
  color: var(--mm99-primary-color);
  border: 2px solid var(--mm99-secondary-color);
}

.page-games-slot-games__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
}

.page-games-slot-games__btn--secondary {
  background-color: transparent;
  color: var(--mm99-secondary-color);
  border: 2px solid var(--mm99-secondary-color);
}

.page-games-slot-games__btn--secondary:hover {
  background-color: var(--mm99-secondary-color);
  color: var(--mm99-primary-color);
  transform: translateY(-3px);
}

.page-games-slot-games__why-choose,
.page-games-slot-games__game-types,
.page-games-slot-games__how-to-play,
.page-games-slot-games__tips,
.page-games-slot-games__providers,
.page-games-slot-games__faq,
.page-games-slot-games__cta-final {
  padding: 80px 0;
  background-color: var(--mm99-bg-dark);
}

.page-games-slot-games__why-choose {
  background-color: var(--mm99-primary-color);
}

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

.page-games-slot-games__feature-item {
  background-color: var(--mm99-bg-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--mm99-border-color);
}

.page-games-slot-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-games-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--mm99-secondary-color));
}

.page-games-slot-games__feature-title {
  font-size: 1.5em;
  color: var(--mm99-secondary-color);
  margin-bottom: 15px;
}

.page-games-slot-games__feature-item p {
  color: var(--mm99-text-light);
  font-size: 0.95em;
}

.page-games-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-games-slot-games__list li {
  background-color: var(--mm99-primary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--mm99-secondary-color);
}

.page-games-slot-games__list-title {
  font-size: 1.6em;
  color: var(--mm99-secondary-color);
  margin-bottom: 10px;
}

.page-games-slot-games__list li p {
  color: var(--mm99-text-light);
}

.page-games-slot-games__image-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-games-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--mm99-secondary-color);
}

.page-games-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-games-slot-games__steps-list li {
  background-color: var(--mm99-primary-color);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
  padding-left: 70px;
  border-left: none;
}

.page-games-slot-games__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--mm99-secondary-color);
  color: var(--mm99-primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-games-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-games-slot-games__tips-list li {
  background-color: var(--mm99-primary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--mm99-secondary-color);
}

.page-games-slot-games__tips-list li p {
  color: var(--mm99-text-light);
}

.page-games-slot-games__provider-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-games-slot-games__provider-list li {
  background-color: var(--mm99-primary-color);
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--mm99-secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-games-slot-games__provider-list li:hover {
  transform: translateY(-3px);
}

.page-games-slot-games__faq-item {
  background-color: var(--mm99-primary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--mm99-secondary-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-slot-games__faq-question {
  font-size: 1.4em;
  color: var(--mm99-secondary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-games-slot-games__faq-question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-games-slot-games__faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-games-slot-games__faq-answer {
  color: var(--mm99-text-light);
  font-size: 1em;
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-games-slot-games__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-games-slot-games__cta-card {
  background-color: var(--mm99-secondary-color);
  color: var(--mm99-primary-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-games-slot-games__cta-text {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0;
}

.page-games-slot-games__cta-text a {
  color: var(--mm99-primary-color);
  text-decoration: underline;
}

.page-games-slot-games__cta-text a:hover {
  color: #334057;
}

.page-games-slot-games__cta-final {
  background-color: var(--mm99-primary-color);
  text-align: center;
  padding: 80px 0;
}

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

.page-games-slot-games a {
    color: var(--mm99-secondary-color);
    text-decoration: none;
}

.page-games-slot-games a:hover {
    text-decoration: underline;
    color: #E6C200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-games__hero-title {
    font-size: 3em;
  }
  .page-games-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-games-slot-games__section-title {
    font-size: 2em;
  }
  .page-games-slot-games__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-games-slot-games__provider-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-games-slot-games__hero {
    padding: 80px 0;
  }
  .page-games-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-games-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-slot-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-games-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-games__section-description {
    font-size: 1em;
  }
  .page-games-slot-games__why-choose,
  .page-games-slot-games__game-types,
  .page-games-slot-games__how-to-play,
  .page-games-slot-games__tips,
  .page-games-slot-games__providers,
  .page-games-slot-games__faq,
  .page-games-slot-games__cta-final {
    padding: 60px 0;
  }
  .page-games-slot-games__steps-list li,
  .page-games-slot-games__tips-list li,
  .page-games-slot-games__list li,
  .page-games-slot-games__faq-item {
    padding: 20px;
    padding-left: 60px;
  }
  .page-games-slot-games__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-games-slot-games__feature-title {
    font-size: 1.3em;
  }
  .page-games-slot-games__list-title {
    font-size: 1.4em;
  }
  .page-games-slot-games__faq-question {
    font-size: 1.2em;
  }
  .page-games-slot-games__cta-text {
    font-size: 1.2em;
  }
  .page-games-slot-games__cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-games-slot-games__hero-title {
    font-size: 2em;
  }
  .page-games-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-games-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-games-slot-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-games-slot-games__feature-item {
    padding: 20px;
  }
  .page-games-slot-games__list-title {
    font-size: 1.2em;
  }
  .page-games-slot-games__cta-text {
    font-size: 1em;
  }
}