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

body {
    background: #000;
    color: #fff;
    font-family: "Courier New", monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    width: 80%;
    max-width: 900px;
}

.prompt {
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

.menu-container {
    position: relative;
}

.menu {
    list-style: none;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.menu li {
    margin: 10px 0;
}

.menu a {
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.menu a:hover {
    letter-spacing: 2px;
}

/* Affichage au hover */
.menu-container:hover .menu {
    opacity: 1;
    transform: translateY(0);
}

/* Curseur clignotant */
.blink {
    animation: blink 1s infinite;
}

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

