:root {
    --bg: #050712;
    --panel: #0b1020;
    --accent: #00f6ff;
    --accent-soft: rgba(0, 246, 255, 0.25);
    --accent-secondary: #ff2fd6;
    --text-main: #f5f7ff;
    --text-muted: #8f9ac5;
    --shadow-neon: 0 0 22px rgba(0, 246, 255, 0.55);
    --shadow-pink: 0 0 22px rgba(255, 47, 214, 0.55);
}

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

body {
    background: radial-gradient(circle at top, #151a3a 0, #050712 55%, #02030a 100%);
    height: 100vh;
    overflow: hidden;
    /* font-family: system-ui, sans-serif; */
    font-family: 'Orbitron', sans-serif;
    color: var(--text-main);
}

/* BACKGROUND LAYERS */
.bg-glow {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 246, 255, 0.22), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 47, 214, 0.22), transparent 60%);
    filter: blur(40px);
    opacity: 0.7;
    z-index: 0;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.08;
    z-index: 0;
}

/* PARTICLES */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(2px);
    animation: drift 12s linear infinite;
}

@keyframes drift {
    from {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }

    to {
        transform: translateY(-120vh) translateX(40px);
        opacity: 0;
    }
}

/* MAIN SPLASH CONTENT */
.splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

/* LOGO ORB */
.logo-orb {
    max-width: 140px;
    margin: 0 auto 24px;
}

.logo-orb img {
    width: 100%;
}

/* .logo-orb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background:
        conic-gradient(from 180deg,
            var(--accent),
            var(--accent-secondary),
            var(--accent));
    box-shadow:
        0 0 40px rgba(0,246,255,0.6),
        0 0 60px rgba(255,47,214,0.4);
    position: relative;
    overflow: hidden;
}

.logo-orb::after {
    content: "";
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, white, transparent 60%);
    opacity: 0.9;
}
    */

/* TITLE */
.title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--shadow-neon);
}

/* SUBTITLE */
.subtitle {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* CTA BUTTON */
a.enter-btn {
    display: inline-block;
    text-decoration: none;
}

.enter-btn {
    margin-top: 40px;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    color: #050712;
    box-shadow: var(--shadow-neon);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.enter-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 246, 255, 0.9);
}