/* style/slots-games-video-slots.css */
.page-slots-games-video-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for text on dark backgrounds */
  background-color: #121212; /* Very dark background */
}

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

.page-slots-games-video-slots__hero {
  background: linear-gradient(135deg, #1A237E 0%, #0D103D 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-slots-games-video-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-video-slots__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-slots-games-video-slots__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show part of the image */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px; /* Adjust size as needed */
  opacity: 0.2; /* Subtle background image */
  z-index: 0;
}

.page-slots-games-video-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-slots-games-video-slots__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;
  margin: 10px;
  position: relative;
  z-index: 1;
}

.page-slots-games-video-slots__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-slots-games-video-slots__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

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

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

.page-slots-games-video-slots__btn--tertiary {
  background-color: #1A237E;
  color: #FFD700;
  border: 2px solid #1A237E;
}

.page-slots-games-video-slots__btn--tertiary:hover {
  background-color: #0D103D;
  border-color: #0D103D;
  transform: translateY(-2px);
}

.page-slots-games-video-slots__section {
  padding: 60px 0;
  background-color: #1A237E; /* Dark blue background */
  color: #E0E0E0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-video-slots__section--dark {
  background-color: #0D103D; /* Even darker blue for contrast */
  color: #FFFFFF;
}

.page-slots-games-video-slots__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games-video-slots__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slots-games-video-slots__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  color: #CCCCCC;
}

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

.page-slots-games-video-slots__feature-item,
.page-slots-games-video-slots__info-item {
  background-color: rgba(255, 215, 0, 0.1); /* Subtle gold background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-slots-games-video-slots__feature-item:hover,
.page-slots-games-video-slots__info-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.15);
}

.page-slots-games-video-slots__feature-icon,
.page-slots-games-video-slots__info-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-slots-games-video-slots__feature-title,
.page-slots-games-video-slots__info-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games-video-slots__feature-description,
.page-slots-games-video-slots__info-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-slots-games-video-slots__guide-list,
.page-slots-games-video-slots__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-slots-games-video-slots__guide-list li,
.page-slots-games-video-slots__tips-list li {
  background-color: rgba(26, 35, 126, 0.7); /* Dark blue slightly transparent */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-slots-games-video-slots__guide-title,
.page-slots-games-video-slots__tips-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-slots-games-video-slots__guide-list li p,
.page-slots-games-video-slots__tips-list li p {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-bottom: 15px;
}

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

.page-slots-games-video-slots__game-card {
  background-color: #0D103D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-video-slots__game-card:hover {
  transform: translateY(-8px);
}

.page-slots-games-video-slots__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slots-games-video-slots__game-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 15px 20px 5px;
  margin: 0;
}

.page-slots-games-video-slots__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 20px 20px;
  margin: 0;
}

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

.page-slots-games-video-slots__section--cta {
  background-color: #1A237E;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-video-slots__section--cta .page-slots-games-video-slots__section-title {
  color: #FFD700;
}

.page-slots-games-video-slots__app-image {
  max-width: 300px;
  height: auto;
  margin-top: 40px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.page-slots-games-video-slots__section--last {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-video-slots__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-games-video-slots__section-title {
    font-size: 2em;
  }
  .page-slots-games-video-slots__features-grid,
  .page-slots-games-video-slots__info-grid,
  .page-slots-games-video-slots__game-showcase {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-games-video-slots__hero {
    padding: 60px 0 30px;
  }
  .page-slots-games-video-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-video-slots__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-video-slots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games-video-slots__section {
    padding: 40px 0;
  }
  .page-slots-games-video-slots__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slots-games-video-slots__text-block {
    font-size: 0.95em;
  }
  .page-slots-games-video-slots__features-grid,
  .page-slots-games-video-slots__info-grid,
  .page-slots-games-video-slots__game-showcase {
    grid-template-columns: 1fr;
  }
  .page-slots-games-video-slots__feature-item,
  .page-slots-games-video-slots__info-item,
  .page-slots-games-video-slots__game-card,
  .page-slots-games-video-slots__guide-list li,
  .page-slots-games-video-slots__tips-list li {
    padding: 20px;
  }
  .page-slots-games-video-slots__feature-title,
  .page-slots-games-video-slots__info-title {
    font-size: 1.3em;
  }
  .page-slots-games-video-slots__guide-title,
  .page-slots-games-video-slots__tips-title {
    font-size: 1.4em;
  }
  .page-slots-games-video-slots__app-image {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-video-slots__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-games-video-slots__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slots-games-video-slots__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-video-slots__feature-icon,
  .page-slots-games-video-slots__info-icon {
    width: 60px;
    height: 60px;
  }
  .page-slots-games-video-slots__game-image {
    height: 150px;
  }
}