:root {
    --bg: #050505;
    --text: #ffffff;
    --accent: #00ff41; /* Vert Terminal */
    --accent-glow: rgba(0, 255, 65, 0.4);
    --secondary: #7000ff; /* Violet Cyber */
    --font-heading: 'Syncopate', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* On cache le curseur par défaut pour mettre le nôtre */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-code);
    overflow-x: hidden;
}

/* --- BACKGROUND CANVAS --- */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

/* --- CUSTOM CURSOR --- */
.cursor {
    width: 10px;
    height: 10px;
    border: 1px solid var(--text);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
}
.cursor2 {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease-out;
}
.hovered .cursor2 {
    transform: scale(2);
    background: var(--accent-glow);
    border-color: transparent;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
}
.logo { font-weight: 700; letter-spacing: 2px; }

/* --- SECTIONS --- */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

/* HERO */
.hero-content { text-align: center; z-index: 2; }

.overline {
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 1px white;
    position: relative;
}

h1:hover {
    color: white;
    text-shadow: 0 0 20px var(--accent);
}

.sub-hero {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    gap: 10px;
}
.line { width: 1px; height: 50px; background: var(--accent); }

/* MOTIVATION CARDS */
#motivation {
    flex-direction: row;
    gap: 3rem;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    width: 400px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    opacity: 0; /* Pour l'animation JS */
    transform: translateY(50px);
}

.card h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--secondary);
}

.stat-bar { margin-top: 2rem; }
.progress {
    width: 100%; height: 4px; background: #333; margin-top: 10px;
}
.fill {
    height: 100%; background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.tags span {
    display: inline-block;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 10px;
    font-size: 0.7rem;
    margin-right: 5px;
    margin-top: 1rem;
}

/* TERMINAL */
.terminal-window {
    width: 100%;
    max-width: 700px;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    opacity: 0;
    transform: scale(0.9);
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.title { margin-left: auto; font-size: 0.8rem; color: #888; margin-right: auto;}

/* Ajout pour les noms des architectes */
.admin-names {
    color: var(--secondary); /* Le violet cyber */
    text-shadow: 0 0 15px var(--secondary);
    margin-left: 10px;
    animation: pulseName 2s infinite alternate;
}

@keyframes pulseName {
    from { opacity: 0.8; text-shadow: 0 0 10px var(--secondary); }
    to { opacity: 1; text-shadow: 0 0 25px var(--secondary), 0 0 5px white; }
}

.terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    height: 300px;
    overflow-y: auto;
    color: #ccc;
}

.input-line { display: flex; align-items: center; margin-top: 10px; }
.prompt { color: var(--accent); margin-right: 10px; }
input {
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    outline: none;
    caret-color: var(--accent);
}

/* ANIMATION CLASSES */
.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}