body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #f9fcff, #e9f3ff);
  color: #333;
  margin: 0;
}

/* HEADER LOGO */
header h1 i {
  color: #0d6efd;
  margin-right: 8px;
}

/* HERO */
.hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f0f8ff, #e6f0ff);
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.filters {
  margin-top: 25px;
}

/* Filtres */
.filters .btn {
  border-radius: 20px;
  margin: 0 6px 10px;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.filters .btn.active {
  background-color: #0d6efd;
  color: white;
}

/* CARTE DE JEU */
.card-jeu {
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  border: none;
  position: relative;
  padding-top: 20px;
  margin-top: 30px;
  overflow: hidden;
}

.card-jeu:hover {
  transform: translateY(-4px);
}

.card-img-top {
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #222;
}

.card-text {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 12px;
}

.card-jeu .btn {
  font-size: 0.8rem;
  padding: 6px 10px;
}

/* BOOSTED — Contour néon net */
.card-jeu.boosted-highlight {
  border: 3px solid #00ccff;
  animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 4px #00ccff, 0 0 8px #00ccff, 0 0 12px #00ccff;
    border-color: #00ccff;
  }
  100% {
    box-shadow: 0 0 6px #00ccff, 0 0 10px #00e6ff, 0 0 14px #00e6ff;
    border-color: #00e6ff;
  }
}

/* Badge Boosté au-dessus */
.boosted-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff6600, #ff3300);
  color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.4);
  animation: flamePulse 1.5s infinite ease-in-out;
  z-index: 2;
}

@keyframes flamePulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.85; }
}

/* FOOTER */
footer {
  font-size: 14px;
  text-align: center;
  padding: 20px;
  color: #666;
}
