/* style/slot-games-video-slots.css */

/* Base styles for the page */
.page-slot-games-video-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

/* Containers for content alignment */
.page-slot-games-video-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section Titles */
.page-slot-games-video-slots__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Text blocks */
.page-slot-games-video-slots__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Text links within content */
.page-slot-games-video-slots__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games-video-slots__text-link:hover {
  text-decoration: none;
}

/* Hero Section */
.page-slot-games-video-slots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

.page-slot-games-video-slots__hero-image-wrapper {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-slot-games-video-slots__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-slot-games-video-slots__hero-content {
  text-align: center;
  max-width: 900px;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap slightly with image for design effect */
  position: relative; /* Ensure content is above image */
  z-index: 1;
}

.page-slot-games-video-slots__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.page-slot-games-video-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.page-slot-games-video-slots__btn-primary,
.page-slot-games-video-slots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-video-slots__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games-video-slots__btn-primary:hover {
  background: #1e87b3;
  border-color: #1e87b3;
}

.page-slot-games-video-slots__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-slot-games-video-slots__btn-secondary:hover {
  background: #e0e0e0;
}

/* Intro Section */
.page-slot-games-video-slots__intro-section,
.page-slot-games-video-slots__game-types-section,
.page-slot-games-video-slots__promotions-section,
.page-slot-games-video-slots__cta-section {
  padding: 60px 0;
}

.page-slot-games-video-slots__intro-section .page-slot-games-video-slots__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-slot-games-video-slots__why-choose-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-slot-games-video-slots__why-choose-section .page-slot-games-video-slots__section-title {
  color: #ffffff;
}

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

.page-slot-games-video-slots__feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-video-slots__feature-title {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-slot-games-video-slots__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Game Types Section */
.page-slot-games-video-slots__game-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-video-slots__game-type-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.page-slot-games-video-slots__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games-video-slots__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin: 20px 15px 10px;
  font-weight: 700;
}

.page-slot-games-video-slots__card-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-slot-games-video-slots__card-link:hover {
  text-decoration: underline;
}

.page-slot-games-video-slots__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
}

/* How to Play Section */
.page-slot-games-video-slots__how-to-play-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-slot-games-video-slots__how-to-play-section .page-slot-games-video-slots__section-title {
  color: #ffffff;
}

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

.page-slot-games-video-slots__step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-video-slots__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  color: #26A9E0;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-slot-games-video-slots__step-title {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games-video-slots__step-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-slot-games-video-slots__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-video-slots__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.page-slot-games-video-slots__promo-card .page-slot-games-video-slots__card-image {
  height: 220px;
}

.page-slot-games-video-slots__promo-card .page-slot-games-video-slots__card-title {
  margin: 20px 20px 10px;
  font-size: 1.3em;
}

.page-slot-games-video-slots__promo-card .page-slot-games-video-slots__card-description {
  padding: 0 20px 20px;
}

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

/* FAQ Section */
.page-slot-games-video-slots__faq-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
}

.page-slot-games-video-slots__faq-section .page-slot-games-video-slots__section-title {
  color: #ffffff;
}

.page-slot-games-video-slots__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-slot-games-video-slots__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-video-slots__faq-item summary {
  list-style: none; /* Hide default marker for details tag */
  cursor: pointer;
}

.page-slot-games-video-slots__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-slot-games-video-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
}

.page-slot-games-video-slots__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-video-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-video-slots__faq-item[open] .page-slot-games-video-slots__faq-toggle {
  transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-slot-games-video-slots__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #f0f0f0;
}

/* CTA Section */
.page-slot-games-video-slots__cta-section {
  text-align: center;
  padding: 60px 0;
}

.page-slot-games-video-slots__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-video-slots__hero-title {
    font-size: clamp(2em, 4vw, 3em);
  }
  .page-slot-games-video-slots__section-title {
    font-size: 2em;
  }
  .page-slot-games-video-slots__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-video-slots {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-video-slots__container {
    padding: 0 15px;
  }
  .page-slot-games-video-slots__hero-section {
    padding: 10px 15px 40px;
  }
  .page-slot-games-video-slots__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-slot-games-video-slots__hero-description {
    font-size: 1em;
  }
  .page-slot-games-video-slots__hero-content {
    margin-top: -40px;
    padding: 15px;
  }
  .page-slot-games-video-slots__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-video-slots__btn-primary,
  .page-slot-games-video-slots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games-video-slots__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-video-slots__features-grid,
  .page-slot-games-video-slots__game-type-cards,
  .page-slot-games-video-slots__steps,
  .page-slot-games-video-slots__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-video-slots__intro-section,
  .page-slot-games-video-slots__why-choose-section,
  .page-slot-games-video-slots__game-types-section,
  .page-slot-games-video-slots__how-to-play-section,
  .page-slot-games-video-slots__promotions-section,
  .page-slot-games-video-slots__faq-section,
  .page-slot-games-video-slots__cta-section {
    padding: 40px 0;
  }

  /* Mobile image responsiveness */
  .page-slot-games-video-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-video-slots__hero-image-wrapper,
  .page-slot-games-video-slots__intro-section .page-slot-games-video-slots__image-content,
  .page-slot-games-video-slots__card-image {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games-video-slots__card-image {
    height: 180px; /* Adjust height for mobile cards */
  }
  /* Mobile video responsiveness (if any video is added) */
  .page-slot-games-video-slots video,
  .page-slot-games-video-slots__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-video-slots__video-section,
  .page-slot-games-video-slots__video-container,
  .page-slot-games-video-slots__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-video-slots__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-slot-games-video-slots__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-slot-games-video-slots__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }
  .page-slot-games-video-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-video-slots__hero-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }
  .page-slot-games-video-slots__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-video-slots__hero-content {
    padding: 10px;
  }
}

/* Color contrast classes */
.page-slot-games-video-slots__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-slot-games-video-slots__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-slot-games-video-slots__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games-video-slots__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

/* Custom colors */
.page-slot-games-video-slots__login-button {
  background-color: #EA7C07; /* Login button specific color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-slot-games-video-slots__login-button:hover {
  background-color: #d26a00;
  border-color: #d26a00;
}