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

:root {
    --color-bg: #0a0a0b;
    --color-surface: #141415;
    --color-text: #fafafa;
    --color-text-muted: #a1a1aa;
    --color-accent: #6366f1;
    --color-accent-glow: rgba(99, 102, 241, 0.4);
    --color-success: #22c55e;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

.greeting {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-surface);
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

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

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-surface);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link:hover {
    color: var(--color-text);
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-accent-glow);
}

.link svg {
    transition: transform 0.3s ease;
}

.link:hover svg {
    transform: scale(1.1);
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.background-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .status {
        padding: 0.625rem 1rem;
    }

    .link {
        width: 44px;
        height: 44px;
    }

    .background-glow {
        width: 300px;
        height: 300px;
    }
}
