:root {
    --bg-color: #010B13;
    --primary-glow: #4facfe;
    --secondary-glow: #00f2fe;
    --text-color: #ffffff;
    --accent-color: #4facfe;
}

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

body {
    background: #010B13;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#canvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vmax;
    height: 100vmax;
    max-width: 2000px;
    max-height: 2000px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    width: 50vmin;
    min-width: 280px;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(79, 172, 254, 0.4));
    animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
    z-index: 20;
}

.logo {
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 20vmin;
    font-weight: 700;
    letter-spacing: -2px;
    fill: url(#glowGradient);
    text-transform: uppercase;
    filter: url(#glow);
}

.content {
    margin-top: -20px;
    z-index: 20;
}

.status {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: fadeIn 3s ease-out;
    margin-left: 0.8rem;
}

.status-text {
    position: absolute;
    bottom: 100px;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--secondary-glow);
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
    z-index: 20;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(79, 172, 254, 0.4)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.6)); transform: scale(1.02); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .logo-wrapper {
        width: 80%;
        max-width: 350px;
    }
    .logo-text {
        font-size: 140px;
    }
    .status {
        font-size: 1.5rem;
        letter-spacing: 0.4rem;
    }
    .status-text {
        bottom: 80px;
        font-size: 0.9rem;
        letter-spacing: 0.1rem;
    }
    #canvas {
        width: 150vw;
        height: 150vw;
    }
}
