        :root {
            --neon-pink: #ff2d95;
            --neon-cyan: #00f7ff;
            --neon-purple: #b829dd;
            --samurai-red: #dc143c;
            --samurai-gold: #ffd700;
            --bg-dark: #0a0a0f;
            --bg-card: #12121a;
        }

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

        body {
    display: flex;
    flex-direction: column;
            font-family: 'VT323', monospace;
            background: var(--bg-dark);
            color: var(--neon-cyan);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            background-image:
                linear-gradient(0deg, transparent 24%, rgba(255,45,149,0.03) 25%, rgba(255,45,149,0.03) 26%, transparent 27%, transparent 74%, rgba(255,45,149,0.03) 75%, rgba(255,45,149,0.03) 76%, transparent 77%, transparent),
                linear-gradient(90deg, transparent 24%, rgba(255,45,149,0.03) 25%, rgba(255,45,149,0.03) 26%, transparent 27%, transparent 74%, rgba(255,45,149,0.03) 75%, rgba(255,45,149,0.03) 76%, transparent 77%, transparent);
            background-size: 50px 50px;
        }

        /* Scanlines */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 100;
        }
  .container {
            text-align: center;
            padding: 2rem;
            position: relative;
            z-index: 10;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .ascii {
            font-family: 'VT323', monospace;
            font-size: 0.6rem;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--neon-purple);
            text-shadow: 0 0 10px var(--neon-purple);
            white-space: pre;
        }

        @media (min-width: 768px) {
            .ascii { font-size: 0.85rem; }
        }

        h1 {
            font-family: 'Press Start 2P', cursive;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow:
                0 0 10px var(--neon-pink),
                0 0 20px var(--neon-pink),
                0 0 40px var(--neon-pink);
            animation: glitch 3s infinite;
            position: relative;
        }

        @media (min-width: 768px) {
            h1 { font-size: 3rem; }
        }

        @keyframes glitch {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-2px, 1px); }
            94% { transform: translate(2px, -1px); }
            96% { transform: translate(-1px, 2px); }
            98% { transform: translate(1px, -2px); }
        }

        /* Kanji decoration */
        h1::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -20px;
            font-size: 0.4em;
            color: var(--samurai-red);
            opacity: 0.6;
            font-family: sans-serif;
        }

        .subtitle {
            font-family: 'VT323', monospace;
            font-size: 1.5rem;
            color: var(--neon-cyan);
            margin-bottom: 2rem;
            letter-spacing: 2px;
        }

        .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .links a {
            display: inline-block;
            padding: 1rem 2rem;
            border: 2px solid var(--neon-cyan);
            color: var(--neon-cyan);
            text-decoration: none;
            font-family: 'VT323', monospace;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,247,255,0.3), transparent);
            transition: left 0.5s;
        }

        .links a:hover::before {
            left: 100%;
        }

        .links a:hover {
            background: var(--neon-cyan);
            color: var(--bg-dark);
            box-shadow: 0 0 30px var(--neon-cyan);
            transform: translateY(-3px);
        }

        .links a.primary {
            border-color: var(--neon-pink);
            color: var(--neon-pink);
        }

        .links a.primary:hover {
            background: var(--neon-pink);
            color: var(--bg-dark);
            box-shadow: 0 0 30px var(--neon-pink);
        }

        .status {
            font-family: 'VT323', monospace;
            font-size: 1.2rem;
            color: #666;
        }

        .status span {
            color: var(--samurai-gold);
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Pixel Samurai decoration */
        .samurai-deco {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 64px;
            height: 64px;
            opacity: 0.3;
        }

        .samurai-deco-pixel {
            width: 4px;
            height: 4px;
            background: transparent;
            position: absolute;
            box-shadow:
                /* Chapeau blanc */
                16px 0 0 #fff,
                20px 0 0 #fff,
                24px 0 0 #fff,
                12px 4px 0 #fff,
                16px 4px 0 #eee,
                20px 4px 0 #eee,
                24px 4px 0 #eee,
                28px 4px 0 #fff,
                8px 8px 0 #fff,
                12px 8px 0 #ddd,
                16px 8px 0 #ccc,
                20px 8px 0 #ccc,
                24px 8px 0 #ccc,
                28px 8px 0 #ddd,
                32px 8px 0 #fff,
                /* Visage */
                16px 12px 0 #FFD5B5,
                20px 12px 0 #FFD5B5,
                24px 12px 0 #FFD5B5,
                12px 16px 0 #FFD5B5,
                16px 16px 0 #222,
                20px 16px 0 #FFD5B5,
                24px 16px 0 #222,
                28px 16px 0 #FFD5B5,
                /* Corps */
                12px 24px 0 var(--neon-purple),
                16px 24px 0 var(--neon-purple),
                20px 24px 0 #1a1a2e,
                24px 24px 0 var(--neon-purple),
                28px 24px 0 var(--neon-purple),
                /* Katana */
                36px 20px 0 #888,
                40px 16px 0 #aaa,
                44px 12px 0 #ccc,
                48px 8px 0 #fff;
            filter: drop-shadow(0 0 8px var(--neon-purple));
        }

        /* Footer */
        .footer {
            position: fixed;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 0.9rem;
            color: #444;
        }

        .footer a {
            color: var(--neon-purple);
            text-decoration: none;
        }

        .footer a:hover {
            text-shadow: 0 0 10px var(--neon-purple);
        }

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(18,18,26,0.95) 20%);
    border-top: 1px solid #333;
    padding: 40px 20px 20px;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-section h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7em;
    color: var(--neon-pink);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--neon-pink);
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a {
    color: #888;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s;
}
.footer-section a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}
.footer-section p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 200px;
    background: var(--bg-dark);
    border: 2px solid #333;
    color: var(--neon-cyan);
    padding: 12px 15px;
    font-family: 'VT323', monospace;
    font-size: 1.1em;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0,247,255,0.3);
}
.newsletter-form button {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 12px 20px;
    font-family: 'VT323', monospace;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
}
.newsletter-form button:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--neon-pink);
}

/* Social */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #444;
    color: #888;
    font-size: 1.2em;
    transition: all 0.3s;
}
.social-links a:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple);
}

/* Copyright */
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #444;
    font-size: 1em;
}
.footer-bottom a {
    color: var(--neon-purple);
    text-decoration: none;
}

/* Container centré avec footer */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
