:root {
    --bg: #0a0a0a;
    --accent: #ff9100;
    --text: #d1d1d1;
    --border: #2a2a2a;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.maintenance-container {
    text-align: center;
    border: 1px solid var(--border);
    padding: 40px;
    background: #111;
    box-shadow: 0 0 30px rgba(255, 145, 0, 0.05);
    max-width: 500px;
    width: 90%;
}

.logo {
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 25px;
    display: block;
    letter-spacing: 1px;
}

h1 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* Animation de la barre de chargement */
.loader {
    width: 100%;
    background: #000;
    height: 4px;
    position: relative;
    margin-bottom: 30px;
}

.progress {
    width: 30%;
    height: 100%;
    background: var(--accent);
    position: absolute;
    animation: move 2.5s infinite ease-in-out;
}

@keyframes move {
    0% { left: 0; width: 10%; }
    50% { left: 60%; width: 40%; }
    100% { left: 0; width: 10%; }
}

.status-list {
    text-align: left;
    font-size: 0.85rem;
    color: #555;
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.status-list li span {
    color: var(--accent);
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background: var(--accent);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 5px;
}

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