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

body {
    font-family: 'Courier New', monospace;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-container {
    text-align: center;
    padding: 40px;
}

.logo {
    font-size: 72px;
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-size: 18px;
    color: #888888;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.access-form {
    margin-bottom: 20px;
}

#accessCode {
    background: #0a0a0a;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
}

#accessCode:focus {
    outline: none;
    border-color: #cccccc;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

button {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    letter-spacing: 3px;
    transition: all 0.3s;
}

button:hover {
    background: #cccccc;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.error {
    color: #ff4444;
    font-size: 14px;
    min-height: 20px;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .gate-logo {
        font-size: 48px;           /* ← Plus petit */
        letter-spacing: 12px;       /* ← Réduit */
        margin-bottom: 50px;
    }
    
    .gate-input {
        width: 280px;
        font-size: 14px;
        padding: 12px;
    }
    
    .gate-btn {
        padding: 12px 40px;
        font-size: 12px;
    }
}
