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

body {
    background-image: url(nox_olympusblurred.png);
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    width: 100%;
}

.logo {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 0px #8a2be2, 
                 6px 6px 0px rgba(138, 43, 226, 0.3);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.noxlogo {
    width: 310px;
    height: 256px;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.5;
}

a {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(138, 43, 226, 0.1);
}

a:hover {
    color: #ffffff;
    background: rgba(138, 43, 226, 0.3);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .container {
        gap: 30px;
    }
    
    .logo {
        margin-bottom: 10px;
        text-shadow: 2px 2px 0px #8a2be2, 
                     4px 4px 0px rgba(138, 43, 226, 0.3);
    }
    
    .message {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .container {
        gap: 25px;
    }
    
    .logo {
        letter-spacing: 2px;
    }
    
    h1 {
        letter-spacing: 1px;
    }
}

/* Support �crans haute r�solution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo {
        text-shadow: 2px 2px 0px #8a2be2, 
                     5px 5px 0px rgba(138, 43, 226, 0.3),
                     0 0 20px rgba(138, 43, 226, 0.2);
    }
}

/* Animation subtile */
.container {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}