:root {
  --turquoise: #40e0d0;
  --magenta: #ff1493;
  --lemon: #ffff00;
}

body {
  font-family: "Arial", sans-serif;
}

.hero-bg {
  background: linear-gradient(
    135deg,
    var(--turquoise) 0%,
    var(--magenta) 50%,
    var(--lemon) 100%
  );
}

.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.btn-primary {
  background: linear-gradient(45deg, var(--turquoise), var(--magenta));
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
  color: var(--magenta);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}
