:root {
    --bg-color: #0d0f14;
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --accent-purple: rgba(110, 86, 207, 0.15);
    --accent-blue: rgba(56, 126, 255, 0.15);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.background-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 8s infinite alternate ease-in-out;
}

.glow-1 {
    width: 50vw;
    height: 50vw;
    background: var(--accent-purple);
    top: -20%;
    left: -10%;
}

.glow-2 {
    width: 40vw;
    height: 40vw;
    background: var(--accent-blue);
    bottom: -10%;
    right: -10%;
    animation-delay: -4s;
}

/* CSS Logo Design */
.css-logo {
    user-select: none;
}

.logo-mark {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.0) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-type {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(to right, #ffffff, #8b92a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typography & Animations */
.coming-soon {
    letter-spacing: 0.15em;
    text-shadow: 0 4px 24px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}