#listJoueur {
    display: none;
}

/* =========================
   THEME HACKER NOIR & BLEU
========================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Share+Tech+Mono&display=swap');

:root {
    --bg-black: #05060a;
    --bg-card: #0d1117;
    --blue-neon: #00f2ff;
    --blue-dark: #0088cc;
    --text-light: #c9faff;
    --danger: #ff004c;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--bg-black);
    color: var(--text-light);
    min-height: 100vh;
    background-image: radial-gradient(circle at 20% 20%, #00131a 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, #001a2a 0%, transparent 40%);
}

/* TITRES */
h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--blue-neon);
    text-shadow: 0 0 8px var(--blue-neon);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HEADER */
header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid var(--blue-dark);
}

/* CONTAINERS */
.param,
.game,
.carte,
.vote,
.resultat {
    background: var(--bg-card);
    border: 1px solid var(--blue-dark);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    padding: 25px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 8px;
    animation: fadeIn 0.4s ease-in-out;
}

/* SECTIONS */
section, article {
    margin-bottom: 20px;
}

/* INPUTS */
input[type="text"],
input[type="number"] {
    background: #000;
    border: 1px solid var(--blue-dark);
    color: var(--blue-neon);
    padding: 8px;
    width: 100%;
    border-radius: 4px;
    outline: none;
    font-family: 'Share Tech Mono', monospace;
}

input:focus {
    border-color: var(--blue-neon);
    box-shadow: 0 0 8px var(--blue-neon);
}

/* CHECKBOX */
input[type="checkbox"] {
    accent-color: var(--blue-neon);
    transform: scale(1.2);
    margin-left: 10px;
}

/* BUTTONS */
button {
    background: transparent;
    border: 1px solid var(--blue-neon);
    color: var(--blue-neon);
    padding: 10px 18px;
    margin: 8px 5px 0 0;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    border-radius: 4px;
}

button:hover {
    background: var(--blue-neon);
    color: #000;
    box-shadow: 0 0 15px var(--blue-neon);
}

/* JOUEURS LISTE */
#joueurListe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}



.joueurItem {
    background: #000;
    border: 1px solid var(--blue-dark);
    padding: 15px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
}

.joueurItem:hover {
    border-color: var(--blue-neon);
    box-shadow: 0 0 10px var(--blue-neon);
    transform: scale(1.05);
}

/* CARTE */
.carte article {
    background: #000;
    padding: 30px;
    font-size: 1.5rem;
    text-align: center;
    border: 2px solid var(--blue-neon);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.4s;
    text-shadow: 0 0 10px var(--blue-neon);
}

.carte article:hover {
    background: var(--blue-neon);
    color: #000;
}

/* VOTE */
.vote ol {
    padding-left: 20px;
}

.vote li {
    margin-bottom: 8px;
}

/* RESULTAT */
.resultat article {
    background: #000;
    border: 1px solid var(--blue-dark);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

/* DANGER TEXT */
.red,
.vote p[style*="red"] {
    color: var(--danger);
    text-shadow: 0 0 8px var(--danger);
}

/* SCROLLBAR STYLE */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-neon);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .param,
    .game,
    .carte,
    .vote,
    .resultat {
        margin: 15px;
        padding: 15px;
    }

    h1, h2 {
        font-size: 1.2rem;
    }
}
