:root {
  --bg-main: #020617;       /* bleu nuit très sombre */
  --bg-elevated: #02081f;
  --bg-elevated-soft: #020c2b;
  --accent: #3b82f6;        /* bleu vif */
  --accent-soft: rgba(59, 130, 246, 0.15);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2933;
  --danger: #f97373;
  --success: #22c55e;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0b1435 0, var(--bg-main) 55%);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.6);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.6);
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

nav a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #3b82f6, #22c55e);
  transition: width 0.2s ease;
}

nav a:hover {
  color: #f9fafb;
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.btn {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid transparent;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  color: var(--text-main);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease,
    box-shadow 0.1s ease, color 0.2s ease;
  font-weight: 500;
}

.btn-outline {
  border-color: var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.8);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.9);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.7);
  color: var(--text-muted);
  width: fit-content;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #4ade80, #16a34a);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(to right, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-secondary-info {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-secondary-info span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-search-card {
  margin-top: 10px;
  background: radial-gradient(circle at top, #020c2b, #020617);
  border-radius: var(--radius-lg);
  padding: 14px 14px 16px;
  border: 1px solid rgba(75, 85, 99, 0.7);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-select,
.hero-input {
  flex: 1;
  min-width: 160px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 13px;
  color: var(--text-main);
  outline: none;
  appearance: none;
}

.hero-select:focus,
.hero-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
}

.hero-btn-cta {
  white-space: nowrap;
  padding-inline: 16px;
  font-size: 13px;
}

/* HERO VISUAL */
.hero-right {
  position: relative;
}

.hero-card {
  background: rgba(15, 23, 42, 0.97);
  border-radius: 20px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
}

.hero-card-tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.7);
  color: #bfdbfe;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.hero-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.hero-player-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #60a5fa, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.hero-player-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-player-name {
  font-size: 12px;
}

.hero-player-meta {
  font-size: 10px;
  color: var(--text-muted);
}

.hero-player-role {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #93c5fd;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

.hero-card-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-online {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

.hero-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at top, rgba(96, 165, 250, 0.4), transparent 60%);
  filter: blur(10px);
  opacity: 0.4;
  pointer-events: none;
}

/* SECTION: COMMENT ÇA MARCHE */
section {
  margin-top: 60px;
}

.section-title {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 14px 14px 16px;
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.step-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* SECTION: JEUX POPULAIRES */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  background: radial-gradient(circle at top, #020c2b, #020617);
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.game-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.game-info-title {
  font-size: 13px;
  font-weight: 600;
}

.game-info-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 11px;
}

.game-footer span {
  color: var(--text-muted);
}

.btn-game {
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.7);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-game:hover {
  background: rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

/* SECTION: POURQUOI NOUS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.why-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* SECTION: AVIS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.97);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-author {
  margin-top: 6px;
  font-size: 11px;
  color: #e5e7eb;
  font-weight: 500;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-pill {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .steps,
  .games-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding-inline: 16px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-search-card {
    flex-direction: column;
    align-items: stretch;
  }

  .steps,
  .games-grid,
  .why-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* CARROUSEL JEUX POPULAIRES */
.top-games-carousel {
  margin-top: 50px;
}

.top-games-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}

.games-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at top, #020c2b, #020617);
  padding: 12px 6px;
}

.games-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 10px 6px;
}

/* Masquer la scrollbar (optionnel) */
.games-track::-webkit-scrollbar {
  height: 0;
}
.games-track {
  scrollbar-width: none;
}

.carousel-card {
  min-width: 190px;
  max-width: 190px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  flex-shrink: 0;
}

.carousel-poster {
  height: 110px;
  background-size: cover;
  background-position: center;
}

/* Posters stylisés (en attendant de vraies images) */
.poster-lol {
  background-image: linear-gradient(135deg, #1d4ed8, #22c55e);
}
.poster-valorant {
  background-image: linear-gradient(135deg, #ef4444, #111827);
}
.poster-wow {
  background-image: linear-gradient(135deg, #facc15, #1e3a8a);
}
.poster-rl {
  background-image: linear-gradient(135deg, #06b6d4, #1d4ed8);
}
.poster-gta {
  background-image: linear-gradient(135deg, #f97316, #0f172a);
}
.poster-amongus {
  background-image: linear-gradient(135deg, #ec4899, #1e293b);
}

/* Nouveaux jeux */
.poster-minecraft {
  background-image: linear-gradient(135deg, #4ade80, #166534);
}
.poster-dofus {
  background-image: linear-gradient(135deg, #facc15, #92400e);
}
.poster-cs {
  background-image: linear-gradient(135deg, #f87171, #1f2937);
}
.poster-fortnite {
  background-image: linear-gradient(135deg, #8b5cf6, #3b82f6);
}
.poster-r6 {
  background-image: linear-gradient(135deg, #334155, #000000);
}
.poster-enshrouded {
  background-image: linear-gradient(135deg, #fb923c, #4b5563);
}
.poster-bf6 {
  background-image: linear-gradient(135deg, #0ea5e9, #1e3a8a);
}
.poster-roblox {
  background-image: linear-gradient(135deg, #ef4444, #7f1d1d);
}

.carousel-content {
  padding: 10px 12px 11px;
}

.carousel-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.carousel-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Boutons gauche / droite */
.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.carousel-btn:hover {
  background: rgba(37, 99, 235, 0.7);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.7);
  transform: translateY(-1px);
}

/* Responsive carrousel */
@media (max-width: 640px) {
  .top-games-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   NOUVEAUX STYLES POUR LA PAGE INDEX
   ======================================== */

/* HERO NEW SECTION */
.hero-new {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.7);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hero-title-new {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-new {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
}

.hero-info {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  color: #22c55e;
  font-weight: 700;
}

.hide-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/* CONCEPT SECTION */
.concept-section {
  margin-top: 80px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.7);
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title-large {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.concept-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 20px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.concept-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.7);
  color: #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.concept-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.concept-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.concept-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.concept-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.concept-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.concept-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 700;
}

.concept-footnote {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
  margin-top: 12px;
}

/* WHY SECTION */
.why-section {
  margin-top: 80px;
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card-new {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 20px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.why-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.blue-card::before {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.yellow-card::before {
  background: linear-gradient(to right, #facc15, #fb923c);
}

.orange-card::before {
  background: linear-gradient(to right, #fb923c, #f97316);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.why-title-new {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-text-new {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.why-footnote {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 8px;
}

/* FEATURES SECTION */
.features-section {
  margin-top: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.feature-item {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.8);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(59, 130, 246, 0.7);
  transform: translateY(-2px);
}

.feature-emoji {
  font-size: 24px;
}

/* PREMIUM SECTION */
.premium-section {
  margin-top: 80px;
  padding: 60px 20px;
  background: radial-gradient(circle at top, rgba(139, 92, 246, 0.1), transparent 60%);
  border-radius: 24px;
}

.premium-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.premium-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.premium-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.premium-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.premium-list li {
  font-size: 15px;
  padding: 10px 0;
  color: var(--text-main);
}

.premium-cta-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 24px 0;
}

.btn-premium {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.7);
}

/* FINAL CTA SECTION */
.final-cta-section {
  margin-top: 80px;
  padding: 60px 20px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
  border-radius: 24px;
  border: 1px solid rgba(55, 65, 81, 0.8);
}

.final-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.final-cta-info {
  font-size: 13px;
  color: #6b7280;
  margin-top: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .concept-grid,
  .why-grid-new,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-new {
    padding: 40px 20px 60px;
  }

  .concept-section,
  .why-section,
  .features-section,
  .premium-section,
  .final-cta-section {
    margin-top: 60px;
  }
}

/* Boutons d'action (accepter/refuser) alignés entre dashboard et game */
.action-btn {
  border: none;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 32px;
}

.action-btn:hover {
  transform: translateY(-1px);
}

.action-btn.accept {
  background: #10b981;
}

.action-btn.reject {
  background: #ef4444;
}

.friend-card.processing {
  opacity: 0.5;
  pointer-events: none;
}
