.page-slot-games {
  padding-top: 10px; /* Small top padding for content below header */
  background-color: #F4F7FB; /* Background color for the main page */
  color: #1F2D3D; /* Main text color */
}

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

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
  background-color: #F4F7FB; /* Consistent background */
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-slot-games__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  max-width: 100%; /* Ensure H1 fits */
}

.page-slot-games__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
  min-width: 200px; /* Ensure button is not too small */
}

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

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
}

.page-slot-games__section-description {
  font-size: 1.05em;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #1F2D3D; /* Text Main */
}

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

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

.page-slot-games__card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.15);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-slot-games__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D; /* Text Main */
}

.page-slot-games__game-types-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-slot-games__game-type-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-slot-games__type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-slot-games__type-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-slot-games__type-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D; /* Text Main */
}

.page-slot-games__cta-section {
  background-color: #2F6BFF; /* Main color */
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-top: 40px;
  border-radius: 10px;
}

.page-slot-games__cta-section .page-slot-games__section-title,
.page-slot-games__cta-section .page-slot-games__section-description {
  color: #FFFFFF;
}

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

  .page-slot-games__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Responsive font size for H1 */
  }

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

  .page-slot-games__section-title {
    font-size: clamp(1.6em, 5vw, 2em);
    padding-top: 20px;
  }

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

  .page-slot-games__card-image,
  .page-slot-games__type-image {
    height: auto;
    max-width: 100%; /* Ensure images don't overflow on mobile */
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px;
  }

  .page-slot-games__cta-section {
    padding: 50px 15px;
  }
}

/* Ensure content area images maintain minimum size and don't overflow */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevent extra space below images */
}

/* Specific rule for content area images to ensure min-width, as per requirements */
.page-slot-games__feature-card img,
.page-slot-games__game-type-item img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-slot-games__feature-card img,
  .page-slot-games__game-type-item img {
    max-width: 100%; /* Important for mobile overflow */
    height: auto; /* Important for mobile overflow */
  }
}