* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0f1a;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* SPLASH CONTAINER */
#splash-screen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0b0f1a, #10172a);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 1s ease forwards;
    animation-delay: 3s;
}

/* LOGO */
.logo {
    width: 230px;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 1.2s ease forwards;
    filter: drop-shadow(0 0 18px #00c3ff);
}

/* Fade In Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade Out Animation */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

