/* style/slots-games-video.css */
.page-slots-games-video {
  font-family: 'Arial', sans-serif;
  color: #f0e5d4; /* Light text for dark background */
  background-color: #0F1A2B; /* Main background color */
}

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

.page-slots-games-video__bg-dark {
  background-color: #0F1A2B;
  color: #f0e5d4;
}

.page-slots-games-video__bg-light {
  background-color: #1a273b; /* Slightly lighter dark for contrast */
  color: #f0e5d4;
}

.page-slots-games-video__hero-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #0F1A2B 0%, #2a3a50 100%); /* Gradient background for hero */
  overflow: hidden;
}

.page-slots-games-video__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-slots-games-video__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-slots-games-video__hero-section .page-slots-games-video__container {
  position: relative;
  z-index: 1;
}

.page-slots-games-video__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-slots-games-video__hero-subtitle {
  font-size: 1.4em;
  color: #f0e5d4;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slots-games-video__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-video__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0F1A2B;
}

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

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

.page-slots-games-video__btn--secondary:hover {
  background-color: #FFD700;
  color: #0F1A2B;
  transform: translateY(-3px);
}

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

.page-slots-games-video__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0e5d4;
}

.page-slots-games-video__features-section,
.page-slots-games-video__games-showcase,
.page-slots-games-video__how-to-play-section,
.page-slots-games-video__tips-section,
.page-slots-games-video__cta-section,
.page-slots-games-video__faq-section {
  padding: 80px 0;
}

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

.page-slots-games-video__feature-item,
.page-slots-games-video__game-category-item,
.page-slots-games-video__step-item {
  background-color: #1a273b; /* Lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-video__feature-item:hover,
.page-slots-games-video__game-category-item:hover,
.page-slots-games-video__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-slots-games-video__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-slots-games-video__feature-title,
.page-slots-games-video__game-category-title,
.page-slots-games-video__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-games-video__feature-text,
.page-slots-games-video__game-category-text,
.page-slots-games-video__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0e5d4;
}

.page-slots-games-video__game-category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slots-games-video__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-slots-games-video__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0F1A2B;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-slots-games-video__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-slots-games-video__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-video__tips-list li {
  background-color: #1a273b;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
  color: #f0e5d4;
}

.page-slots-games-video__tips-list li strong {
  color: #FFD700;
}

.page-slots-games-video__cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(45deg, #0F1A2B, #3a4a60);
}

.page-slots-games-video__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-slots-games-video__faq-section {
  padding-bottom: 80px;
}

.page-slots-games-video__faq-item {
  background-color: #1a273b;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-slots-games-video__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-slots-games-video__faq-answer {
  font-size: 1em;
  color: #f0e5d4;
  line-height: 1.6;
  display: none; /* Hidden by default, JS will toggle */
}

.page-slots-games-video__faq-item.active .page-slots-games-video__faq-answer {
  display: block;
}

.page-slots-games-video__faq-item.active .page-slots-games-video__faq-question::after {
  content: '-';
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-video__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-video__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-games-video__section-title {
    font-size: 2em;
  }
  .page-slots-games-video__features-grid,
  .page-slots-games-video__game-categories,
  .page-slots-games-video__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-games-video__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-video__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-video__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-video__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots-games-video__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-video__section-description {
    font-size: 0.95em;
  }
  .page-slots-games-video__features-grid,
  .page-slots-games-video__game-categories,
  .page-slots-games-video__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-video__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-video__cta-buttons .page-slots-games-video__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-slots-games-video__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-video__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-games-video__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games-video__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-video__section-description {
    font-size: 0.9em;
  }
  .page-slots-games-video__faq-question {
    font-size: 1.1em;
  }
  .page-slots-games-video__faq-answer {
    font-size: 0.9em;
  }
}