:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #555;
    --link-hover: #3b82f6;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    z-index: 10;
    pointer-events: none;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Static_Noise_Standard.png');
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the main content vertically */
}

#content { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }

h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.text-highlight {
    background: linear-gradient(90deg, #fff 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    max-width: 600px;
    color: #888;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.current-focus {
    border-left: 1px solid #333;
    padding-left: 24px;
}

.label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.project-link {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover { color: var(--link-hover); }

.dim { color: var(--accent); }

.mono {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
}

/* Footer Single Line Styling */
footer {
    padding-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 24px;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
}

.footer-info a:hover { color: #fff; }

.separator {
    margin: 0 15px;
    color: #222;
}

.copyright { color: #333; }

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .separator { display: none; }
    .footer-info span { display: block; margin-bottom: 5px; }
}