/* style/casino-slot-games.css */
.page-casino-slot-games {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-casino-slot-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-casino-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-casino-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-casino-slot-games__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.2s ease;
  border: none;
  cursor: pointer;
}

.page-casino-slot-games__btn--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-casino-slot-games__btn--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-casino-slot-games__btn--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-casino-slot-games__btn--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-casino-slot-games__intro-section,
.page-casino-slot-games__featured-slots,
.page-casino-slot-games__jackpot-section,
.page-casino-slot-games__features-section,
.page-casino-slot-games__guide-section,
.page-casino-slot-games__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-casino-slot-games__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-casino-slot-games__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-casino-slot-games__slot-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slot-games__slot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-slot-games__slot-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino-slot-games__slot-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-slot-games__slot-title a {
  color: #000000;
  text-decoration: none;
}

.page-casino-slot-games__slot-title a:hover {
  color: #FCBC45;
}

.page-casino-slot-games__slot-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-casino-slot-games__btn--play {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  font-size: 1em;
}

.page-casino-slot-games__btn--play:hover {
  background-color: #e6a73c;
}

.page-casino-slot-games__jackpot-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino-slot-games__btn--jackpots {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-casino-slot-games__btn--jackpots:hover {
  background-color: #222222;
  border-color: #FFFFFF;
}

.page-casino-slot-games__features-section {
  background-color: #f0f0f0;
}

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

.page-casino-slot-games__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-casino-slot-games__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-casino-slot-games__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-casino-slot-games__feature-image {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-casino-slot-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-casino-slot-games__guide-list li {
  background-color: #FFFFFF;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-left: 70px;
}

.page-casino-slot-games__guide-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-casino-slot-games__guide-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-slot-games__guide-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 15px;
}

.page-casino-slot-games__btn--register-guide {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 25px;
  font-size: 1em;
}

.page-casino-slot-games__btn--register-guide:hover {
  background-color: #222222;
}

.page-casino-slot-games__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-casino-slot-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-casino-slot-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__btn--join-now {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino-slot-games__btn--join-now:hover {
  background-color: #e0e0e0;
  border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.8em;
  }

  .page-casino-slot-games__section-title,
  .page-casino-slot-games__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games__hero-section {
    padding: 60px 0;
  }

  .page-casino-slot-games__hero-title {
    font-size: 2.2em;
  }

  .page-casino-slot-games__hero-description {
    font-size: 1em;
  }

  .page-casino-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino-slot-games__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-casino-slot-games__section-title,
  .page-casino-slot-games__cta-title {
    font-size: 1.8em;
  }

  .page-casino-slot-games__section-description,
  .page-casino-slot-games__cta-description {
    font-size: 0.95em;
  }

  .page-casino-slot-games__slot-grid,
  .page-casino-slot-games__features-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-slot-games__slot-image,
  .page-casino-slot-games__jackpot-image,
  .page-casino-slot-games__feature-image {
    max-width: 100%;
    height: auto; /* Ensure images scale correctly */
  }

  .page-casino-slot-games__guide-list li {
    padding-left: 20px;
    padding-top: 60px;
  }

  .page-casino-slot-games__guide-list li::before {
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }

  /* Ensure content area images are responsive and not smaller than 200px */
  .page-casino-slot-games__slot-card img,
  .page-casino-slot-games__jackpot-section img,
  .page-casino-slot-games__features-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px; /* Ensure mobile images are not too small */
  }

  /* Ensure no content area images have explicit small widths/heights */
  .page-casino-slot-games__slot-image,
  .page-casino-slot-games__feature-image {
    width: 100%; /* Override fixed widths for responsiveness */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games__hero-title {
    font-size: 1.8em;
  }

  .page-casino-slot-games__section-title,
  .page-casino-slot-games__cta-title {
    font-size: 1.5em;
  }

  .page-casino-slot-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-casino-slot-games__guide-title {
    font-size: 1.5em;
  }
}