:root {
    --purple: #a855f7;
    --cyan: #22d3ee;
    --gold: #fbbf24;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
}

.glow-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: move 20s infinite alternate;
}

.purple {
    background: var(--purple);
    top: -100px;
    left: -100px;
}

.cyan {
    background: var(--cyan);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

#logo {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    z-index: 1;
}

@keyframes float {

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

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

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.title span {
    color: var(--purple);
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 12px;
    color: #94a3b8;
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    color: #94a3b8;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--cyan);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 8px var(--cyan));
}

@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    #logo {
        width: 180px;
    }
}