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

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

.page-games-slot-games__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-games-slot-games__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-games-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-games-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-games-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-games-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

.page-games-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-games-slot-games__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-games-slot-games__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0056b3;
  font-weight: bold;
}

.page-games-slot-games__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

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

.page-games-slot-games__btn--primary {
  background-color: #FFC107;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-games-slot-games__btn--primary:hover {
  background-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
}

.page-games-slot-games__btn--secondary {
  background-color: #007BFF;
  color: #ffffff;
  border: 2px solid #007BFF;
}

.page-games-slot-games__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

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

.page-games-slot-games__feature-item,
.page-games-slot-games__game-type-card,
.page-games-slot-games__step-item,
.page-games-slot-games__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-games-slot-games__feature-item:hover,
.page-games-slot-games__game-type-card:hover,
.page-games-slot-games__step-item:hover,
.page-games-slot-games__promo-card:hover {
  transform: translateY(-5px);
}

.page-games-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3));
}

.page-games-slot-games__feature-title,
.page-games-slot-games__game-type-title,
.page-games-slot-games__step-title,
.page-games-slot-games__promo-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-slot-games__feature-description,
.page-games-slot-games__game-type-description,
.page-games-slot-games__step-description,
.page-games-slot-games__promo-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 15px;
}

.page-games-slot-games__game-type-image,
.page-games-slot-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-games-slot-games__step-item {
  position: relative;
  padding-top: 50px;
}

.page-games-slot-games__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFC107;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.5);
}

.page-games-slot-games__tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-games-slot-games__tip-list li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-games-slot-games__tip-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 3px rgba(0, 123, 255, 0.2));
}

.page-games-slot-games__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-games-slot-games__responsible-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #007BFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
}

.page-games-slot-games__responsible-list li strong {
  color: #0056b3;
}

.page-games-slot-games__section-outro {
  font-size: 1.1em;
  margin-top: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-slot-games__cta-center {
  margin-top: 50px;
  text-align: center;
}

.page-games-slot-games .highlight {
  color: #FFC107;
}

.page-games-slot-games .keyword {
  font-weight: bold;
  color: #007BFF;
}

.page-games-slot-games__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #FFC107;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 300px;
  transform: translateX(100%);
  animation: page-games-slot-games__slide-in 0.8s forwards 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page-games-slot-games__floating-ad-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 10px;
}

.page-games-slot-games__floating-ad-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.page-games-slot-games__floating-ad-text {
  font-size: 0.95em;
  font-weight: bold;
  line-height: 1.3;
  color: #333;
}

.page-games-slot-games__floating-ad:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@keyframes page-games-slot-games__slide-in {
  to {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-slot-games__section-title {
    font-size: 2.2em;
  }
  .page-games-slot-games__floating-ad {
    max-width: 250px;
    bottom: 15px;
    right: 15px;
  }
  .page-games-slot-games__floating-ad-image {
    width: 50px;
    height: 50px;
  }
  .page-games-slot-games__floating-ad-text {
    font-size: 0.85em;
  }
}

@media (max-width: 768px) {
  .page-games-slot-games__hero {
    padding: 60px 0;
  }
  .page-games-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-games-slot-games__section {
    padding: 40px 0;
  }
  .page-games-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-games-slot-games__features-grid,
  .page-games-slot-games__game-types-grid,
  .page-games-slot-games__steps-grid,
  .page-games-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-games-slot-games__tip-list li,
  .page-games-slot-games__responsible-list li {
    font-size: 0.95em;
    padding: 20px;
  }
  .page-games-slot-games__floating-ad {
    max-width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    animation: page-games-slot-games__slide-up 0.8s forwards 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .page-games-slot-games__floating-ad-link {
    padding: 8px;
  }
  .page-games-slot-games__floating-ad-image {
    width: 40px;
    height: 40px;
  }
  .page-games-slot-games__floating-ad-text {
    font-size: 0.8em;
  }
  @keyframes page-games-slot-games__slide-up {
    to {
      transform: translateX(-50%) translateY(0);
    }
  }
}