:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #888;
    --highlight-color: #fff;
    --font-main: 'JetBrains Mono', monospace;
    
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: var(--space-md);
    z-index: 10;
}

/* Typography */
.status-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--accent-color);
    padding: 0.4em 0.8em;
    border-radius: 50px;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: var(--space-md);
}

.headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--accent-color);
}

.headline .highlight {
    color: var(--highlight-color);
    display: block;
}

.subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--accent-color);
    max-width: 450px;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

/* Links */
.social-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.link {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.link:hover {
    border-bottom-color: var(--text-color);
    opacity: 0.8;
}

.separator {
    color: #333;
}

/* Background Effects */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4a4a4a 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #333 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 30px); }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .container {
        padding: var(--space-sm);
        text-align: left; /* Keep left alignment for modern look, or center if preferred */
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    body {
        justify-content: flex-start; /* Allow scroll on small screens if content is tall */
        padding-top: 20vh;
        height: auto;
        min-height: 100vh;
    }
}