/* style/slots-games-video-slots.css */
.page-slots-games-video-slots {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

.page-slots-games-video-slots__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-slots-games-video-slots__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-slots-games-video-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-slots-games-video-slots__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.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: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.page-slots-games-video-slots__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 1000px;
}

.page-slots-games-video-slots__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slots-games-video-slots__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-slots-games-video-slots__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Dark blue title */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.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__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-slots-games-video-slots__introduction .page-slots-games-video-slots__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-slots-games-video-slots__introduction .page-slots-games-video-slots__text-content {
  flex: 1;
}

.page-slots-games-video-slots__introduction .page-slots-games-video-slots__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.page-slots-games-video-slots__introduction .page-slots-games-video-slots__image-content {
  flex: 1;
  min-width: 300px;
}

.page-slots-games-video-slots__image-right, .page-slots-games-video-slots__image-left {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-slots-games-video-slots__features .page-slots-games-video-slots__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slots-games-video-slots__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-video-slots__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-games-video-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.page-slots-games-video-slots__feature-heading {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-slots-games-video-slots__feature-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
}

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

.page-slots-games-video-slots__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

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

.page-slots-games-video-slots__game-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-slots-games-video-slots__game-provider {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}

.page-slots-games-video-slots__game-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slots-games-video-slots__btn--play {
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-slots-games-video-slots__btn--play:hover {
  background-color: #e6c200;
}

.page-slots-games-video-slots__all-games-cta {
  margin-top: 50px;
  padding: 30px;
  background-color: #e0eaf4; /* Light blue-grey */
  border-radius: 12px;
}

.page-slots-games-video-slots__all-games-cta p {
  font-size: 1.2em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-slots-games-video-slots__how-to-play .page-slots-games-video-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-slots-games-video-slots__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-slots-games-video-slots__step-heading {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-slots-games-video-slots__step-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slots-games-video-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-slots-games-video-slots__btn--small:hover {
  background-color: #1A3A60;
  color: #ffffff;
  border-color: #1A3A60;
}

.page-slots-games-video-slots__tips .page-slots-games-video-slots__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}

.page-slots-games-video-slots__tips .page-slots-games-video-slots__image-left {
  flex: 1;
  min-width: 300px;
}

.page-slots-games-video-slots__tips-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slots-games-video-slots__tips-list li {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  border-left: 5px solid #FFD700;
}

.page-slots-games-video-slots__tips-list li strong {
  color: #0A2342;
}

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

.page-slots-games-video-slots__why-item {
  background-color: #0A2342;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.page-slots-games-video-slots__why-item:hover {
  transform: translateY(-5px);
}

.page-slots-games-video-slots__why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(1) brightness(1.5) sepia(1) saturate(5) hue-rotate(30deg); /* Gold-like effect on white icons */
}

.page-slots-games-video-slots__why-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games-video-slots__why-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-slots-games-video-slots__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #0A2342;
  border-radius: 15px;
  color: #ffffff;
}

.page-slots-games-video-slots__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-slots-games-video-slots__cta-bottom .page-slots-games-video-slots__btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-video-slots__hero-description {
    font-size: 1.2em;
  }
  .page-slots-games-video-slots__introduction .page-slots-games-video-slots__content-grid,
  .page-slots-games-video-slots__tips .page-slots-games-video-slots__content-wrapper {
    flex-direction: column;
  }
  .page-slots-games-video-slots__image-right, .page-slots-games-video-slots__image-left {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-slots-games-video-slots__hero {
    padding: 60px 15px;
  }
  .page-slots-games-video-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-video-slots__hero-description {
    font-size: 1em;
  }
  .page-slots-games-video-slots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games-video-slots__section-title {
    font-size: 2em;
  }
  .page-slots-games-video-slots__feature-grid,
  .page-slots-games-video-slots__game-showcase,
  .page-slots-games-video-slots__steps-grid,
  .page-slots-games-video-slots__why-hm88bet-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-video-slots__all-games-cta p,
  .page-slots-games-video-slots__cta-bottom p {
    font-size: 1.1em;
  }
  .page-slots-games-video-slots__cta-bottom .page-slots-games-video-slots__btn {
    margin: 10px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-video-slots__hero-actions {
    flex-direction: column;
  }
  .page-slots-games-video-slots__btn {
    width: 100%;
  }
  .page-slots-games-video-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-video-slots__feature-heading,
  .page-slots-games-video-slots__game-title,
  .page-slots-games-video-slots__step-heading,
  .page-slots-games-video-slots__why-heading {
    font-size: 1.3em;
  }
}