:root {
    --bg-color: #080808;
    --text-primary: #f2f2f2;
    --text-muted: #525252;
    --accent: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none;
    /* Custom cursor implementation below if needed, or keeping standard but hidden for style? User wanted 'sleek'. Let's keep system cursor but maybe style links. Actually, let's keep it simple first. */
    cursor: default;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow: hidden;
    /* Prevent scrollbars for the full-screen canvas */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Background Canvas */
#physics-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through */
}

/* Main Content with Z-index to sit above canvas */
.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Typography */
h1.hero-text {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    padding-bottom: 0.2em;
    /* Prevent descender clipping */
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Minimalist Card for Contact */
.info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Magnetic Buttons / Links */
a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.magnetic-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.magnetic-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Social Row */
.social-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

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

.social-link:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    h1.hero-text {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 20px;
    }
}