/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    background: #04040A;
    font-family: 'Arial', sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LAYOUT */
.container {
    text-align: center;
}

/* LOGO */
.logo {
    font-size: 8rem;
    font-weight: 900;
    color: #A46BFF;
    text-shadow: 
        0 0 12px rgba(164,107,255,0.8),
        0 0 25px rgba(164,107,255,0.6),
        0 0 45px rgba(164,107,255,0.4);
    letter-spacing: 0.4rem;
}

/* SUBTITLE */
.subtitle {
    margin-top: 10px;
    font-size: 1.8rem;
    opacity: 0.9;
}

/* VERSION */
.version {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #8F67FF;
    text-shadow: 0 0 10px rgba(164,107,255,0.5);
}

/* FOOTER */
.footer {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.7;
}
