/* style/games-slots-selection.css */
.page-games-slots-selection {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-games-slots-selection__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Deep blue gradient */
  color: #fff;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-games-slots-selection__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-games-slots-selection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Golden yellow for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-games-slots-selection__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-games-slots-selection__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-games-slots-selection__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-games-slots-selection__btn--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue */
  border: 2px solid #FFCC00;
}

.page-games-slots-selection__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-games-slots-selection__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden yellow */
  border: 2px solid #FFCC00;
}

.page-games-slots-selection__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-games-slots-selection__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-games-slots-selection__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-games-slots-selection__section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-games-slots-selection__section--about {
  background-color: #fff;
}

.page-games-slots-selection__section--featured-games {
  background-color: #e6f2ff; /* Light blue background */
}

.page-games-slots-selection__section--guide {
  background-color: #fff;
}

.page-games-slots-selection__section--promotions {
  background-color: #f8f8f8;
}

.page-games-slots-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-games-slots-selection__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #003366; /* Deep blue for titles */
  font-weight: bold;
}

.page-games-slots-selection__section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-slots-selection__features-grid,
.page-games-slots-selection__game-grid,
.page-games-slots-selection__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-games-slots-selection__feature-item,
.page-games-slots-selection__game-card,
.page-games-slots-selection__promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-slots-selection__feature-item:hover,
.page-games-slots-selection__game-card:hover,
.page-games-slots-selection__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-games-slots-selection__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.page-games-slots-selection__feature-item h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-games-slots-selection__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-games-slots-selection__game-image,
.page-games-slots-selection__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-slots-selection__game-info h3,
.page-games-slots-selection__promo-card h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-games-slots-selection__game-info p,
.page-games-slots-selection__promo-card p {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
  min-height: 90px; /* Ensure consistent card height */
}

.page-games-slots-selection__btn--card {
  padding: 10px 20px;
  font-size: 0.95em;
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-games-slots-selection__btn--card:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-games-slots-selection__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-games-slots-selection__step-item {
  background-color: #f4faff; /* Lighter blue background */
  border: 1px solid #cce0ff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  position: relative;
  padding-top: 80px;
}

.page-games-slots-selection__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #003366; /* Deep blue */
  color: #FFCC00; /* Golden yellow */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-slots-selection__step-item h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-games-slots-selection__step-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-games-slots-selection__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #003366;
  color: #fff;
  border: 2px solid #003366;
}

.page-games-slots-selection__btn--small:hover {
  background-color: #004080;
  border-color: #004080;
}

.page-games-slots-selection__section--cta {
  background: linear-gradient(45deg, #003366, #FFCC00); /* Gradient for CTA */
  color: #fff;
  padding: 100px 20px;
}

.page-games-slots-selection__cta-content {
  max-width: 900px;
}

.page-games-slots-selection__cta-title {
  font-size: 3.2em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-games-slots-selection__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-games-slots-selection__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #fff;
  color: #003366;
  border: 2px solid #fff;
}

.page-games-slots-selection__btn--large:hover {
  background-color: #eee;
  border-color: #eee;
}

.page-games-slots-selection .highlight-brand {
  color: #FFCC00;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slots-selection__hero {
    padding: 80px 20px;
  }

  .page-games-slots-selection__hero-title {
    font-size: 2.8em;
  }

  .page-games-slots-selection__hero-description {
    font-size: 1.1em;
  }

  .page-games-slots-selection__section-title {
    font-size: 2.2em;
  }

  .page-games-slots-selection__cta-title {
    font-size: 2.5em;
  }

  .page-games-slots-selection__cta-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-games-slots-selection__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-games-slots-selection__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-games-slots-selection__hero-title {
    font-size: 2.2em;
  }

  .page-games-slots-selection__hero-description {
    font-size: 1em;
  }

  .page-games-slots-selection__section {
    padding: 60px 0;
  }

  .page-games-slots-selection__section-title {
    font-size: 1.8em;
  }

  .page-games-slots-selection__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-games-slots-selection__features-grid,
  .page-games-slots-selection__game-grid,
  .page-games-slots-selection__promo-grid,
  .page-games-slots-selection__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-games-slots-selection__game-info p,
  .page-games-slots-selection__promo-card p {
    min-height: auto; /* Allow height to adjust on smaller screens */
  }

  .page-games-slots-selection__cta-title {
    font-size: 2em;
  }

  .page-games-slots-selection__cta-description {
    font-size: 1.1em;
  }

  .page-games-slots-selection__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-games-slots-selection__hero-title {
    font-size: 1.8em;
  }

  .page-games-slots-selection__section-title {
    font-size: 1.6em;
  }

  .page-games-slots-selection__cta-title {
    font-size: 1.8em;
  }
  .page-games-slots-selection__step-item {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 70px; /* Adjust for smaller number circle */
  }
  .page-games-slots-selection__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: 15px;
    left: 15px;
  }
  .page-games-slots-selection__feature-item h3,
  .page-games-slots-selection__game-info h3,
  .page-games-slots-selection__promo-card h3,
  .page-games-slots-selection__step-item h3 {
    font-size: 1.5em;
  }
}