body {
    background: #000;
    color: #00ff00;
    font-family: "Space Mono", monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    text-shadow: 0 0 6px #00ff00;
    cursor:-webkit-grab;
    user-select: none;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem 3rem 3rem;
    z-index: 100;
}

/* TERMINAL */

.terminal {
    width:90vw;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 20, 0, 0.4);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.2);
    overflow: hidden;
    margin-bottom: 0;
}

.terminal-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* place le prompt en bas */
    height: 500px; /* même hauteur que ton terminal */
    padding: 1.2rem 1.4rem;
}

.terminal-header {
    padding: 0.6rem 1rem;
    background: rgba(0, 40, 0, 0.6);
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00ff00;
    font-size: 0.85rem;
}

.terminal-footer {
    padding: 10px;
    height: auto;
}


.scanlines {
    pointer-events: none;
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,255,0,0.05),
        rgba(0,255,0,0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.25;
    z-index: 50;
}

.footer {
    padding: 1rem 3rem 1.5rem;
    font-size: 0.8rem;
    color: #009900;
    text-align: center;
    letter-spacing: 0.15em;
}

/* ------------------------------ */
/* HEADER                         */
/* ------------------------------ */
.header {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.logo-bracket {
    color: #008800;
}

.logo-highlight {
    color: #00ff00;
}

.status {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}