:root {
    --bg-color: #050505;
    --text-main: #e0e0e0;
    --primary: #00f0ff;
    --secondary: #7000df;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    cursor: none;
}

/* Custom Cursor */
.mouse-cursor {
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-inner {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

/* Splash Layout */
.splash-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

/* Background Effects */
.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, rgba(112, 0, 223, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 8s infinite alternate;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* Content */
.content-wrapper {
    text-align: center;
    max-width: 800px;
    z-index: 10;
}

.main-logo {
    max-width: 100%;
    max-height: 50vh;
    /* Limit height so it fits nicely */
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.3));
    /* Glow effect for the logo */
}

/* Fallback Logo Styles */
.logo-fallback h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.logo-fallback .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-main);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cursor-outer,
    .cursor-inner {
        display: none;
    }

    body {
        cursor: auto;
    }
}