/* ─── SLIDER ─── */
.slider-container {
  position: relative;
  width: min(860px, 100%);
  max-width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(12, 24, 41, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  padding: 48px 40px;
  gap: 36px;
  background: transparent;
}

.game-logo {
  flex-shrink: 0;
  width: min(260px, 100%);
  max-width: 260px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.12);
}
.game-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.game-logo:hover img { transform: scale(1.04); }

.content { flex: 1; }
.content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 8px 0;
}
.content > p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 4px;
  line-height: 1.6;
}

.pricing {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0;
}
.price {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #f0f6ff;
}
.price small {
  font-size: 1rem;
  color: #60a5fa;
  font-weight: 600;
}
.per-month {
  font-size: 0.9rem;
  color: #64748b;
}

.deploy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}
.deploy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.55);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 31, 54, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}
.prev:hover,
.next:hover {
  background: rgba(37, 99, 235, 0.3);
  border-color: #3b82f6;
  color: white;
  transform: translateY(-50%) scale(1.08);
}
.prev { left: 14px; }
.next { right: 14px; }

@media (max-width: 640px) {
  .slide {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .game-logo { width: 100%; max-width: 260px; margin: 0 auto; }
  .features-chips { justify-content: center; }
  .pricing { justify-content: center; }
  .content h1 { font-size: 1.8rem; }
}
