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

/* BACKGROUND */
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, 		#080808, 		#080808 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    color: white;
    overflow: hidden;
    user-select: none;
    user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;

}

/* CONTAINER */
.container {
    text-align: center;
    padding: 2rem;
}

/* LOGO */
.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo {
    width: clamp(140px, 25vw, 260px);
    filter:
        drop-shadow(0 0 12px rgba(0, 180, 255, 0.8)) drop-shadow(0 0 30px rgba(132, 0, 255, 0.6));
    animation: float 6s ease-in-out infinite;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(1deg);
    filter:
        drop-shadow(0 0 20px rgba(0, 220, 255, 1)) drop-shadow(0 0 50px rgba(153, 0, 255, 0.9));
}

/* TITLE */
.title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    background: linear-gradient(90deg,
            #00eaff,
            #b300ff,
            #00eaff);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: neon 4s linear infinite;
    text-shadow:
        0 0 10px rgba(0, 200, 255, 0.6),
        0 0 25px rgba(180, 0, 255, 0.5);
}

/* ANIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes neon {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 300%;
    }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .title {
        letter-spacing: 0.15em;
    }
}