:root {
    --bg-color: #000000;
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --accent: #ffffff;
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-stack);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: default;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Subtle grain effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

h1 {
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-transform: uppercase;
}

.subtitle {
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.content {
    margin-bottom: 4rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.status-indicator {
    color: var(--text-secondary);
    position: relative;
    padding-left: 12px;
}

.status-indicator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #00ff00;
    /* Bright Green */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
    /* Green Glow - v2 */
}

.bio {
    margin-top: 1rem;
    color: var(--text-secondary);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.link:hover {
    color: var(--accent);
}

.separator {
    color: #333;
    font-size: 0.8rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
}