:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --streak-color: #909090;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Space Mono', monospace;
    margin: 0;
    /* Changed to auto to allow scrolling on small mobile screens if text is long */
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    position: relative;
}

/* --- VISUAL LAYER --- */
#streak-container {
    position: fixed;
    /* Fixed so it stays put if mobile scrolls */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.streak {
    position: absolute;
    background-color: var(--streak-color);
    width: 4px;
    height: 50px;
    border-radius: 2px;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

/* --- CONTENT LAYER --- */
main {
    position: absolute;
    z-index: 1;

    /* Desktop Default Positioning */
    left: 45%;
    width: 40%;
    top: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.content-wrapper {
    width: 100%;
    max-width: 550px;
    padding: 2rem;
    /* Simplified padding */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

    background-color: var(--bg-color);
    /* Matches page background (white) */
    position: relative;
    /* Ensures it sits above the fixed background */
    z-index: 2;
    /* Explicitly places it above the streaks */
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-align: left;
    width: 100%;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 2rem;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    width: 95%;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Styling for the Links */
.social-box {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* Remove underline */
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-box:hover {
    border-color: var(--text-color);
    color: var(--text-color);
    background: #f0f0f0;
}

/* --- MOBILE & RESPONSIVE --- */
@media (max-width: 768px) {
    main {
        position: relative;
        /* Flows naturally */
        left: auto;
        width: 100%;
        height: auto;
        min-height: 100vh;
        padding: 20px 20px;
    }

    .content-wrapper {
        padding: 0;
        max-width: 100%;
    }

    h1 {
        font-size: 1.8rem;
        /* Slightly smaller for mobile */
    }

    p {
        font-size: 1rem;
        /* Maintain readability */
    }
}