.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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 40px;
  background-color: #F4F7FB;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

.page-slot-games__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 20px;
}

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

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

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

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.page-slot-games__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-slot-games__about-section, .page-slot-games__popular-games-section, .page-slot-games__why-choose-section {
  padding: 40px 0;
}

.page-slot-games__popular-games-section {
  background-color: #FFFFFF;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-slot-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-slot-games__game-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #1F2D3D;
  margin: 15px 15px 10px;
}

.page-slot-games__game-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
  padding: 0 15px;
  flex-grow: 1;
}

.page-slot-games__game-button {
  display: block;
  width: calc(100% - 30px);
  margin: 15px;
  padding: 10px 0;
  text-align: center;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.page-slot-games__game-button:hover {
  opacity: 0.9;
}

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

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

.page-slot-games__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-slot-games__cta-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  padding: 60px 0;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(47, 107, 255, 0.3);
}

.page-slot-games__section-title--white, .page-slot-games__paragraph--white {
  color: #FFFFFF;
}

.page-slot-games__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
  background: #FFFFFF;
  color: #2F6BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button--large:hover {
  background: #F4F7FB;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

  .page-slot-games__main-title {
    font-size: 1.8em;
  }

  .page-slot-games__section-title {
    font-size: 1.6em;
  }

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

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

  .page-slot-games__hero-image,
  .page-slot-games__game-image,
  .page-slot-games__feature-icon {
    max-width: 100%;
    height: auto;
  }

  .page-slot-games__game-image,
  .page-slot-games__feature-icon {
    min-width: 200px;
    min-height: 200px;
  }

  .page-slot-games__container {
    padding: 15px;
  }
}