.page-slot-games {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  background-color: #F4F7FB;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-height: 500px; /* Limit hero image height */
}

.page-slot-games__hero-content {
  padding: 30px 20px;
  text-align: center;
}

.page-slot-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.page-slot-games__cta-button--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.page-slot-games__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-slot-games__features-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__feature-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-slot-games__feature-heading {
  font-size: 1.4em;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-slot-games__feature-text {
  font-size: 1em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-slot-games__popular-games-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

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

.page-slot-games__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #1F2D3D;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency, min 200px */
  object-fit: cover;
  display: block;
}

.page-slot-games__game-title {
  font-size: 1.2em;
  font-weight: 600;
  padding: 15px;
  text-align: center;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-slot-games__how-to-play-section {
  padding: 60px 0;
  background-color: #F4F7FB;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-slot-games__step-item {
  display: flex;
  align-items: flex-start;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-slot-games__step-number {
  font-size: 1.8em;
  font-weight: 700;
  color: #2F6BFF;
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
}

.page-slot-games__step-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin: 0;
}

.page-slot-games__link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-slot-games__link:hover {
  text-decoration: underline;
}

.page-slot-games__responsible-gaming-section {
  padding: 60px 0;
  margin-bottom: 40px;
  text-align: center;
}

.page-slot-games__text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-slot-games__text-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid #2F6BFF;
}

.page-slot-games__text-link:hover {
  color: #6FA3FF;
  border-color: #6FA3FF;
}

.page-slot-games__text-link--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.page-slot-games__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games__faq-item {
  margin-bottom: 20px;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
}

.page-slot-games__faq-question {
  font-size: 1.2em;
  color: #2F6BFF;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 15px;
  }

  .page-slot-games__hero-content {
    padding: 20px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-slot-games__description {
    font-size: 1em;
  }

  .page-slot-games__cta-button {
    padding: 12px 25px;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-slot-games__feature-list {
    grid-template-columns: 1fr;
  }

  .page-slot-games__game-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__game-card img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-height: 200px; /* Maintain minimum height */
  }

  .page-slot-games__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-slot-games__step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* Ensure content images are responsive and not smaller than 200px */
  .page-slot-games img {
    max-width: 100%;
    height: auto; /* Ensure aspect ratio is maintained */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
  }

  .page-slot-games__game-card img {
    height: auto; /* Override fixed height for responsiveness */
  }
}