/* ============================================================
   TopServeur 2026 — Style Principal
   Thème : Cyberpunk Neon Gaming
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg-primary:    #080a0f;
  --bg-secondary:  #0d1117;
  --bg-card:       #111827;
  --bg-card-hover: #1a2333;
  --border:        rgba(0, 212, 255, 0.12);
  --border-hover:  rgba(0, 212, 255, 0.35);

  --neon-blue:   #00d4ff;
  --neon-purple: #7b2fff;
  --neon-orange: #ff6b35;
  --neon-green:  #00ff88;
  --gold:        #ffd700;
  --silver:      #c0c0c0;

  --text-primary:   #e8edf5;
  --text-secondary: #8899aa;
  --text-muted:     #5a6a7a;

  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-glow:   0 0 20px rgba(0, 212, 255, 0.15);
  --shadow-gold:   0 0 20px rgba(255, 215, 0, 0.2);
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.4);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Background Effects ---- */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-glow {
  position: fixed; border-radius: 50%; z-index: 0; pointer-events: none;
  filter: blur(120px); opacity: 0.12;
}
.bg-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--neon-blue), transparent);
  top: -200px; right: -200px;
  animation: float1 12s ease-in-out infinite;
}
.bg-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--neon-purple), transparent);
  bottom: -150px; left: -150px;
  animation: float2 15s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-20px)} }

/* ---- Main content above BG ---- */
section, nav, footer { position: relative; z-index: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem; color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--neon-blue) !important;
}
.nav-link i { margin-right: 5px; }

.dropdown-menu-dark {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.5rem;
}
.dropdown-item { color: var(--text-secondary); padding: 0.5rem 1rem; border-radius: var(--radius-sm); }
.dropdown-item:hover { background: var(--border); color: var(--text-primary); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--radius-sm); transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border: none; color: #fff;
  box-shadow: 0 4px 15px rgba(0,212,255,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,212,255,0.4);
  color: #fff;
}
.btn-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--neon-blue); color: var(--neon-blue); background: rgba(0,212,255,0.05); }

.btn-vote {
  background: linear-gradient(135deg, #00c851, #00ff88);
  border: none; color: #000; font-weight: 700; padding: 0.4rem 1rem;
  box-shadow: 0 4px 12px rgba(0,255,136,0.25);
}
.btn-vote:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,255,136,0.35); color: #000; }

.btn-vote-large {
  background: linear-gradient(135deg, #00c851, #00ff88);
  border: none; color: #000; font-weight: 700; font-size: 1.1rem; padding: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,255,136,0.3);
}
.btn-vote-large:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,255,136,0.4); color: #000; }

.btn-boost {
  background: linear-gradient(135deg, var(--neon-orange), #ff9a00);
  border: none; color: #fff;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}
.btn-boost:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.4); color: #fff; }

.btn-add {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-secondary);
}
.btn-add:hover { background: rgba(0,212,255,0.1); border-color: var(--neon-blue); color: var(--neon-blue); }

.btn-discord {
  background: #5865F2; border: none; color: #fff;
}
.btn-discord:hover { background: #4752c4; color: #fff; }
.btn-website {
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary);
}
.btn-website:hover { border-color: var(--neon-blue); color: var(--neon-blue); }

.btn-paypal {
  background: linear-gradient(135deg, #003087, #009cde);
  border: none; color: #fff;
  box-shadow: 0 4px 15px rgba(0,156,222,0.3);
  font-size: 1.1rem;
}
.btn-paypal:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,156,222,0.4); color: #fff; }

.btn-premium-cta {
  background: linear-gradient(135deg, var(--gold), #ffa500);
  color: #000; font-weight: 700; font-size: 0.8rem;
  padding: 0.4rem 1rem; border-radius: 6px; display: inline-block;
}

.btn-vote-submit {
  background: linear-gradient(135deg, #00c851, var(--neon-green));
  border: none; color: #000; font-weight: 800; font-size: 1.1rem;
  padding: 1rem; border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
  transition: var(--transition);
}
.btn-vote-submit:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(0,255,136,0.5); color: #000; }

/* ============================================================
   BADGES
   ============================================================ */
.badge { font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; padding: 0.3em 0.7em; border-radius: 6px; }
.badge-gta  { background: rgba(0,212,255,0.15); color: var(--neon-blue); border: 1px solid rgba(0,212,255,0.3); }
.badge-redm { background: rgba(255,107,53,0.15); color: var(--neon-orange); border: 1px solid rgba(255,107,53,0.3); }
.badge-ip   { background: rgba(255,255,255,0.08); color: var(--text-muted); font-family: var(--font-mono); font-size: 0.7rem; }
.badge-premium { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.3); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { padding: 5rem 0 3rem; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  color: var(--neon-blue); font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15; color: var(--text-primary); margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }

.hero-stats {
  display: inline-flex; align-items: center; gap: 2rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1rem 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  display: block; font-family: var(--font-display); font-weight: 900; font-size: 1.8rem;
  color: var(--neon-blue); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-section { padding: 1rem 0; }
.filter-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.75rem 1.25rem;
}
.filter-left, .filter-right { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

.filter-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  color: var(--text-secondary); padding: 0.4rem 1rem;
  border-radius: var(--radius-sm); text-decoration: none;
  border: 1px solid transparent; transition: var(--transition);
}
.filter-btn:hover { color: var(--neon-blue); background: rgba(0,212,255,0.05); border-color: var(--border); }
.filter-btn.active { color: var(--neon-blue); background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.3); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-secondary); font-family: var(--font-display); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.premium-badge {
  background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.25); color: var(--gold);
}
.section-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.section-desc { color: var(--text-secondary); font-size: 0.95rem; }

/* ============================================================
   PREMIUM SECTION
   ============================================================ */
.premium-section { padding: 3rem 0; }

.premium-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
@media (max-width: 1200px) { .premium-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .premium-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .premium-grid { grid-template-columns: 1fr; } }

.premium-slot {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
  position: relative; min-height: 220px; display: flex; flex-direction: column;
}
.premium-slot.slot-gold { border-color: rgba(255,215,0,0.25); }
.premium-slot.slot-silver { border-color: rgba(192,192,192,0.15); }
.premium-slot:hover { transform: translateY(-4px); }
.premium-slot.slot-gold:hover { border-color: rgba(255,215,0,0.5); box-shadow: var(--shadow-gold); }
.premium-slot.slot-silver:hover { border-color: rgba(192,192,192,0.3); }

.slot-rank {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: rgba(0,0,0,0.3);
}
.rank-num {
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--text-primary);
}
.rank-crown { font-size: 0.9rem; }
.rank-crown.gold { color: var(--gold); filter: drop-shadow(0 0 4px rgba(255,215,0,0.5)); }
.rank-crown.silver { color: var(--silver); }

/* Filled slot */
.slot-content { display: flex; flex-direction: column; flex: 1; text-decoration: none; }
.slot-banner {
  flex: 1; background: var(--bg-card) center/cover; min-height: 160px;
  position: relative; display: flex; align-items: flex-end;
}
.slot-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.slot-info {
  position: relative; z-index: 1; padding: 0.75rem; display: flex; gap: 0.6rem; align-items: flex-end;
}
.slot-logo {
  width: 44px; height: 44px; border-radius: 8px; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2); flex-shrink: 0;
}
.slot-meta { flex: 1; min-width: 0; }
.slot-name {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px;
}
.slot-votes { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.slot-timer { font-size: 0.65rem; color: var(--gold); margin-top: 2px; }

/* Gold glow animation for filled premium slots */
.slot-gold.filled {
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 10px rgba(255,215,0,0.1); }
  50%      { box-shadow: 0 0 25px rgba(255,215,0,0.25); }
}

/* Empty slot */
.slot-empty-link { display: flex; flex: 1; text-decoration: none; }
.slot-empty-content {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1rem; gap: 0.5rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.01) 10px, rgba(255,255,255,0.01) 20px);
}
.slot-empty-icon { font-size: 2rem; color: var(--border); transition: var(--transition); }
.slot-empty-link:hover .slot-empty-icon { color: var(--neon-blue); }
.slot-empty-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--text-muted); }
.slot-empty-price { display: flex; align-items: baseline; gap: 3px; }
.price-amount { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--gold); }
.price-per { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   RANKING TABLE
   ============================================================ */
.ranking-section { padding: 2rem 0 4rem; }

.ranking-table { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

.ranking-header {
  display: grid;
  grid-template-columns: 60px 1fr 120px 120px 100px 120px;
  gap: 1rem; padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.3);
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

.ranking-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 120px 100px 120px;
  gap: 1rem; padding: 1rem 1.5rem;
  align-items: center; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.ranking-row:hover { background: var(--bg-card-hover); }
.ranking-row:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .ranking-header { display: none; }
  .ranking-row { grid-template-columns: 50px 1fr auto; gap: 0.75rem; }
  .rr-cat, .rr-votes, .rr-total { display: none; }
}

.rr-rank { display: flex; align-items: center; justify-content: center; }
.rank-badge { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.rank-1 { background: rgba(255,215,0,0.15); color: var(--gold); box-shadow: 0 0 10px rgba(255,215,0,0.2); }
.rank-2 { background: rgba(192,192,192,0.15); color: var(--silver); }
.rank-3 { background: rgba(205,127,50,0.15); color: #cd7f32; }
.rank-num-plain { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); }

.rr-server { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.server-logo-sm { width: 44px; height: 44px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.server-info-text { min-width: 0; }
.server-name-link {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text-primary); text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: var(--transition);
}
.server-name-link:hover { color: var(--neon-blue); }
.server-desc-short { font-size: 0.75rem; color: var(--text-muted); margin: 2px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.votes-month { font-family: var(--font-display); font-weight: 700; color: var(--neon-green); }
.votes-total { font-family: var(--font-mono); font-size: 0.85rem; }

/* Pagination */
.pagination-nav { margin-top: 2rem; }
.pagination .page-link {
  background: var(--bg-card); border-color: var(--border);
  color: var(--text-secondary); font-family: var(--font-display);
}
.pagination .page-link:hover { background: var(--bg-card-hover); border-color: var(--neon-blue); color: var(--neon-blue); }
.pagination .page-item.active .page-link {
  background: var(--neon-blue); border-color: var(--neon-blue); color: #000;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center; padding: 4rem 2rem;
  border: 1px dashed var(--border); border-radius: var(--radius-lg);
}
.empty-icon { font-size: 3rem; color: var(--text-muted); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-family: var(--font-display); font-weight: 700; color: var(--text-secondary); margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================================================
   VOTE PAGE
   ============================================================ */
.vote-section { padding: 3rem 0; }

.vote-server-card, .vote-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.vote-banner { height: 180px; background: var(--bg-secondary) center/cover; position: relative; }
.vote-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.vote-card-body { padding: 1.5rem; }
.vote-server-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.vote-server-logo { width: 64px; height: 64px; border-radius: var(--radius-md); object-fit: cover; border: 2px solid var(--border); }
.vote-server-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text-primary); margin-bottom: 0.25rem; }
.vote-stats-row { display: flex; gap: 2rem; margin-bottom: 1rem; }
.vote-stat { text-align: center; }
.vote-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--neon-blue); display: block; }
.vote-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.vote-server-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.vote-links { display: flex; gap: 0.75rem; }

.vote-form-card { padding: 2rem; }
.vote-form-title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.vote-info-text { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
.turnstile-wrapper { display: flex; justify-content: center; }

/* Cooldown */
.cooldown-box { text-align: center; padding: 2rem; }
.cooldown-icon { font-size: 2.5rem; color: var(--neon-orange); margin-bottom: 0.75rem; display: block; }
.cooldown-text { color: var(--text-secondary); margin-bottom: 0.25rem; }
.cooldown-next { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.cooldown-timer {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--neon-blue);
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  padding: 0.5rem 1.5rem; border-radius: var(--radius-md);
}

/* ============================================================
   SERVER DETAIL
   ============================================================ */
.server-detail-section { padding: 2rem 0 4rem; }
.server-detail-banner {
  height: 280px; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card) center/cover; position: relative;
  border: 1px solid var(--border); margin-bottom: 2rem;
}
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3)); }
.banner-content { position: absolute; inset: 0; display: flex; align-items: center; gap: 1.5rem; padding: 2rem; }
.server-detail-logo { width: 80px; height: 80px; border-radius: var(--radius-md); object-fit: cover; border: 3px solid rgba(255,255,255,0.2); }
.server-detail-name { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: #fff; margin: 0; }

.detail-card, .detail-stats-card, .detail-actions {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem;
}
.detail-card h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }
.server-full-desc { color: var(--text-secondary); line-height: 1.8; }
.detail-stats-card { display: flex; justify-content: space-around; }
.dstat { text-align: center; }
.dstat-num { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--neon-blue); display: block; }
.dstat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }

.voted-already {
  background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2);
  color: var(--neon-green); padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600; text-align: center;
}

/* ============================================================
   FORM PAGES
   ============================================================ */
.form-section { padding: 2rem 0 4rem; }
.form-page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.form-page-header h1 { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; }

.form-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem;
}
.form-section-title {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px; color: var(--neon-blue);
  padding-bottom: 0.75rem; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}

.form-control-dark, .form-select.form-control-dark {
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); border-radius: var(--radius-sm);
  padding: 0.6rem 1rem; transition: var(--transition);
}
.form-control-dark:focus, .form-select.form-control-dark:focus {
  background: var(--bg-secondary); color: var(--text-primary);
  border-color: var(--neon-blue); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); outline: none;
}
.form-control-dark::placeholder { color: var(--text-muted); }
.form-label { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.4rem; }

/* Upload zones */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  position: relative; min-height: 120px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); overflow: hidden; background: var(--bg-secondary);
}
.upload-zone:hover { border-color: var(--neon-blue); background: rgba(0,212,255,0.03); }
.upload-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.upload-placeholder { text-align: center; pointer-events: none; }
.upload-placeholder i { font-size: 2rem; color: var(--text-muted); margin-bottom: 0.5rem; display: block; }
.upload-placeholder p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.upload-preview { max-width: 100%; max-height: 150px; border-radius: var(--radius-sm); object-fit: cover; }
.current-media-preview { max-width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--border); display: block; }

/* Input icon wrap */
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); z-index: 1; pointer-events: none; }

/* Alerts */
.alert-custom {
  border-radius: var(--radius-md); font-family: var(--font-display); font-weight: 600;
  border: none; padding: 0.75rem 1.25rem;
}
.alert-success { background: rgba(0,255,136,0.1); color: var(--neon-green); }
.alert-danger  { background: rgba(255,59,59,0.1);  color: #ff5b5b; }
.alert-warning { background: rgba(255,107,53,0.1); color: var(--neon-orange); }

/* ============================================================
   AUTH
   ============================================================ */
.auth-section { min-height: calc(100vh - 80px); display: flex; align-items: center; padding: 2rem 0; }
.auth-container { width: 100%; max-width: 440px; margin: 0 auto; padding: 0 1rem; }
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem;
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-logo {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.auth-header h1 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin-bottom: 0.25rem; }
.auth-header p { color: var(--text-muted); font-size: 0.9rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.85rem; }
.auth-footer a { color: var(--neon-blue); text-decoration: none; }

/* ============================================================
   PANEL / DASHBOARD
   ============================================================ */
.panel-section { padding: 2rem 0 4rem; }
.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.panel-title { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; }
.panel-subtitle { color: var(--text-muted); margin: 0; }

.dashboard-server-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem;
  transition: var(--transition);
}
.dashboard-server-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.dsc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.dsc-logo { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--border); }
.dsc-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.dsc-stats { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.dsc-stat { }
.dsc-stat-n { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--neon-blue); display: block; }
.dsc-stat-l { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.dsc-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ============================================================
   BOOST PAGE
   ============================================================ */
.boost-section { padding: 2rem 0 4rem; }
.boost-page-header { margin-bottom: 3rem; }
.boost-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.boost-subtitle { color: var(--text-secondary); font-size: 1rem; }

.boost-slots-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 1rem;
}
@media (max-width: 1100px) { .boost-slots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .boost-slots-grid { grid-template-columns: repeat(2, 1fr); } }

.boost-slot-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem;
  text-align: center; transition: var(--transition);
}
.boost-slot-card.gold { border-color: rgba(255,215,0,0.2); }
.boost-slot-card.available.gold:hover { border-color: rgba(255,215,0,0.4); box-shadow: var(--shadow-gold); }
.bsc-rank { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.bsc-pos { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; }
.bsc-crown { font-size: 1rem; }
.gold-crown { color: var(--gold); }
.silver-crown { color: var(--silver); }
.bsc-price { margin-bottom: 0.75rem; }
.bsc-price-amount { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--gold); }
.bsc-price-unit { font-size: 0.8rem; color: var(--text-muted); }
.bsc-status.available-status { color: var(--neon-green); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.bsc-occupied { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; justify-content: center; }
.bsc-occ-logo { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; }

.boost-buy-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem;
}
.buy-title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.price-preview {
  background: rgba(255,215,0,0.06); border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-md); padding: 1rem; text-align: center;
}
.price-preview-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.price-preview-amount { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--gold); }
.price-preview-detail { font-size: 0.8rem; color: var(--text-muted); }

.boost-features { display: flex; flex-wrap: wrap; gap: 1rem; }
.bf-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.bf-item i { color: var(--neon-blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem; position: relative;
}
.footer-brand { display: flex; align-items: center; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-heading {
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--neon-blue); }
.footer-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; transition: var(--transition);
}
.social-btn:hover { border-color: var(--neon-blue); color: var(--neon-blue); background: rgba(0,212,255,0.08); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 1rem; }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--text-muted); margin-left: 0.75rem; }

.boost-promo { background: rgba(255,215,0,0.04); border: 1px solid rgba(255,215,0,0.15); border-radius: var(--radius-md); padding: 1rem; }
.boost-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.boost-badge { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; padding: 0.25em 0.6em; background: rgba(255,215,0,0.15); color: var(--gold); border-radius: 5px; }
.boost-badge-silver { background: rgba(192,192,192,0.15); color: var(--silver); }
.boost-price { font-family: var(--font-display); font-weight: 700; color: var(--text-primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
}


/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.ts-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  padding: 0.875rem 1.5rem; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  backdrop-filter: blur(10px); max-width: 380px;
  transform: translateX(120%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ts-toast.show { transform: translateX(0); }
.ts-toast-success { background: rgba(0,255,136,0.15); border: 1px solid rgba(0,255,136,0.3); color: var(--neon-green); }
.ts-toast-danger  { background: rgba(255,59,59,0.15);  border: 1px solid rgba(255,59,59,0.3);  color: #ff5b5b; }
.ts-toast-info    { background: rgba(0,212,255,0.12);  border: 1px solid rgba(0,212,255,0.25); color: var(--neon-blue); }
.ts-toast-warning { background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.25); color: var(--neon-orange); }

/* ---- Navbar scrolled ---- */
#mainNav.scrolled {
  background: rgba(8,10,15,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ---- Smooth entrance animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeInUp 0.6s ease backwards;
}
.hero-badge    { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-stats    { animation-delay: 0.4s; }

.premium-slot { animation: fadeInUp 0.5s ease backwards; }
.premium-slot:nth-child(1) { animation-delay: 0.1s; }
.premium-slot:nth-child(2) { animation-delay: 0.15s; }
.premium-slot:nth-child(3) { animation-delay: 0.2s; }
.premium-slot:nth-child(4) { animation-delay: 0.25s; }
.premium-slot:nth-child(5) { animation-delay: 0.3s; }

.ranking-row {
  animation: fadeInUp 0.4s ease backwards;
}


/* ============================================================
   WEBHOOK PAGE
   ============================================================ */
.webhook-status-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.wsc-left { display: flex; align-items: center; gap: 1rem; }
.wsc-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  flex-shrink: 0;
}
.wsc-icon.active   { background: rgba(88,101,242,0.15); color: #5865F2; border: 1px solid rgba(88,101,242,0.3); }
.wsc-icon.inactive { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }
.wsc-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.wsc-url   { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.wsc-none  { font-size: 0.85rem; color: var(--text-muted); }
.wsc-badge { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; padding: 0.3em 0.8em; border-radius: 50px; display: flex; align-items: center; gap: 5px; }
.wsc-badge i { font-size: 0.5rem; }
.active-badge   { background: rgba(0,255,136,0.1); color: var(--neon-green); border: 1px solid rgba(0,255,136,0.2); }
.inactive-badge { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }

/* Discord embed preview */
.discord-preview-card {
  background: #313338; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.dp-header {
  padding: 0.75rem 1rem; background: #2b2d31;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  color: #b5bac1; display: flex; align-items: center; gap: 0.5rem;
}
.dp-embed { padding: 1rem; }
.dp-bot-name {
  font-weight: 700; font-size: 0.875rem; color: #fff; margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 6px;
}
.dp-bot-tag {
  background: #5865F2; color: #fff; font-size: 0.6rem; padding: 1px 5px;
  border-radius: 3px; font-weight: 700; letter-spacing: 0.5px;
}
.dp-embed-inner {
  border-radius: 4px; background: #2b2d31; display: flex; gap: 0;
  overflow: hidden; max-width: 520px;
}
.dp-embed-left-bar { width: 4px; background: #00d4ff; flex-shrink: 0; }
.dp-embed-body { flex: 1; padding: 0.75rem; }
.dp-embed-title { font-weight: 700; font-size: 0.9rem; color: #fff; margin-bottom: 0.4rem; }
.dp-embed-desc { font-size: 0.85rem; color: #dbdee1; margin-bottom: 0.75rem; line-height: 1.5; }
.dp-embed-fields { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.dp-field { min-width: 120px; }
.dp-field-name { font-size: 0.75rem; color: #fff; font-weight: 700; margin-bottom: 2px; }
.dp-field-value { font-size: 0.8rem; color: #dbdee1; }
.dp-embed-footer { font-size: 0.7rem; color: #87909c; }
.dp-embed-thumb { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; margin: 0.75rem; flex-shrink: 0; }

/* Webhook guide */
.webhook-guide { background: rgba(88,101,242,0.06); border: 1px solid rgba(88,101,242,0.2); border-radius: var(--radius-md); padding: 1rem; }
.wg-step { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.4rem 0; color: var(--text-secondary); font-size: 0.9rem; }
.wg-num {
  width: 24px; height: 24px; min-width: 24px;
  background: linear-gradient(135deg, #5865F2, #7289da);
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
}


/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page-header { margin-bottom: 2rem; }
.search-page-header h1 { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; }

.search-bar-big {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 2rem;
}
.search-form-big { width: 100%; }
.search-input-wrap {
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.search-icon-big { color: var(--text-muted); font-size: 1.1rem; flex-shrink: 0; }
.search-input-big {
  flex: 1; min-width: 200px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); border-radius: var(--radius-sm);
  padding: 0.7rem 1rem; font-family: var(--font-display); font-size: 1rem;
  outline: none; transition: var(--transition);
}
.search-input-big:focus { border-color: var(--neon-blue); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.search-cat-select {
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-primary); border-radius: var(--radius-sm);
  padding: 0.7rem 1rem; font-family: var(--font-display);
}
.search-results-header { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }

.search-tip-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; text-align: center;
  transition: var(--transition);
}
.search-tip-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.search-tip-card i { font-size: 2rem; color: var(--neon-blue); margin-bottom: 0.75rem; display: block; }
.search-tip-card h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.search-tip-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; text-align: center;
}
.rs-big-num { font-family: var(--font-display); font-weight: 900; font-size: 3.5rem; color: var(--gold); line-height: 1; }
.rs-stars { font-size: 1.2rem; margin: 0.5rem 0; }
.rs-count { color: var(--text-muted); font-size: 0.85rem; }

.star-picker { display: flex; gap: 4px; }
.star-label { cursor: pointer; }
.star-icon { font-size: 1.5rem; color: rgba(255,215,0,0.2); transition: color 0.15s; }

.reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem;
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-comment { color: var(--text-secondary); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* ============================================================
   STATS PANEL
   ============================================================ */
.stat-kpi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem; text-align: center;
}
.stat-kpi-icon { font-size: 1.5rem; color: var(--neon-blue); margin-bottom: 0.5rem; }
.stat-kpi-num { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--text-primary); }
.stat-kpi-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header { margin-bottom: 2rem; }
.legal-header h1 { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; }
.legal-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; line-height: 1.8;
}
.legal-card h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--neon-blue); text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid rgba(0,212,255,0.1); padding-bottom: 0.5rem;
  margin: 1.5rem 0 0.75rem;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--text-secondary); font-size: 0.95rem; }
.legal-card ul { padding-left: 1.5rem; }
.legal-card a { color: var(--neon-blue); }

/* ============================================================
   FIVEM STATUS WIDGET (inline dans les cards serveurs)
   ============================================================ */
.fivem-status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 0.72rem;
  padding: 0.2em 0.6em; border-radius: 6px;
  border: 1px solid transparent;
}
.fivem-online  { background: rgba(0,255,136,0.1); border-color: rgba(0,255,136,0.25); color: var(--neon-green); }
.fivem-offline { background: rgba(255,91,91,0.1); border-color: rgba(255,91,91,0.2); color: #ff5b5b; }
.fivem-loading { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text-muted); }
.fivem-dot { width: 6px; height: 6px; border-radius: 50%; }
.fivem-online  .fivem-dot { background: var(--neon-green); animation: fivemPulse 1.5s infinite; }
.fivem-offline .fivem-dot { background: #ff5b5b; }
.fivem-loading .fivem-dot { background: var(--text-muted); }
@keyframes fivemPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ============================================================
   SHARE BUTTONS (sur les fiches serveurs)
   ============================================================ */
.share-buttons { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
  text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}
.share-btn-twitter  { background: rgba(29,161,242,0.15); color: #1da1f2; border: 1px solid rgba(29,161,242,0.3); }
.share-btn-twitter:hover  { background: rgba(29,161,242,0.25); color: #1da1f2; }
.share-btn-discord  { background: rgba(88,101,242,0.15); color: #5865F2; border: 1px solid rgba(88,101,242,0.3); }
.share-btn-discord:hover  { background: rgba(88,101,242,0.25); color: #5865F2; }
.share-btn-copy     { background: rgba(255,255,255,0.06); color: var(--text-secondary); border: 1px solid var(--border); }
.share-btn-copy:hover { border-color: var(--neon-blue); color: var(--neon-blue); }

/* ============================================================
   DASHBOARD ADDITIONS — bouton Webhook dans dsc-actions
   ============================================================ */
.btn-sm.btn-discord {
  background: rgba(88,101,242,0.15); border: 1px solid rgba(88,101,242,0.3);
  color: #5865F2; font-size: 0.8rem; padding: 0.3rem 0.7rem; border-radius: 6px;
}
.btn-sm.btn-discord:hover { background: rgba(88,101,242,0.3); color: #5865F2; }

/* Footer links additions */
.footer-links a.footer-legal { color: var(--text-muted); font-size: 0.8rem; }


/* ============================================================
   NAVBAR SEARCH
   ============================================================ */
.navbar-search { }
.nav-search-wrap {
  position: relative; display: flex; align-items: center;
}
.nav-search-icon {
  position: absolute; left: 10px; color: var(--text-muted); font-size: 0.8rem; pointer-events: none;
}
.nav-search-input {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-primary); border-radius: 8px;
  padding: 0.4rem 1rem 0.4rem 2rem; font-family: var(--font-display);
  font-size: 0.85rem; width: 220px; outline: none; transition: var(--transition);
}
.nav-search-input::placeholder { color: var(--text-muted); }
.nav-search-input:focus { border-color: var(--neon-blue); background: rgba(0,212,255,0.05); width: 260px; }
