/* Font imports - Hanken Grotesk from Google Fonts */
@import url('https://cdn.jsdelivr.net/npm/geist@1.2.0/dist/fonts/geist-sans/style.min.css');

/* Reset and base styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    background-color: #000000;
    font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-variant-numeric: tabular-nums;
    text-wrap: pretty;
}

/* Text selection highlight */
::selection {
    background-color: #333333;
    color: #FFFFFF;
}

::-moz-selection {
    background-color: #333333;
    color: #FFFFFF;
}

/* Container */
.container {
    min-height: 100vh;
    padding: 64px;
    display: flex;
    flex-direction: column;
}

/* Content wrapper */
.content {
    max-width: 380px;
}

/* Name / Title */
.name {
    font-family: 'Geist Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 16.8px;
    margin-bottom: 24px;
    text-wrap: balance;
}

/* Bio paragraphs */
.bio {
    margin-bottom: 48px;
}

.bio p {
    font-family: 'Geist Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #5E5E5E;
    line-height: 19.6px;
    margin-bottom: 19.6px;
}

.bio p:last-child {
    margin-bottom: 0;
}

/* Navigation Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.links a {
    font-family: 'Geist Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #B8B8B8;
    text-decoration: none;
    line-height: 19.6px;
    transition: color 0.15s ease;
    width: fit-content;
}

.links a:hover {
    color: #FFFFFF;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 64px;
    left: 64px;
}

.footer span {
    font-family: 'Geist Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #5C5C5C;
    line-height: 12px;
}

/* Video */
.video-container {
    position: fixed;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    max-width: 600px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 64px;
    right: 64px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Geist Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        padding: 32px;
        padding-bottom: 0;
    }

    .content {
        max-width: 100%;
        width: 100%;
    }

    .video-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: calc(100% + 64px);
        max-width: none;
        margin-top: 48px;
        margin-left: -32px;
        margin-right: -32px;
    }

    .video-container video {
        width: 100%;
        mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    }

    .footer {
        position: static;
        width: 100%;
        margin-top: 32px;
        padding: 32px;
        padding-top: 0;
    }

    .footer span {
        font-size: 10px;
    }

    .toast {
        bottom: 32px;
        right: 32px;
        left: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px;
        padding-bottom: 0;
    }

    .name {
        font-size: 13px;
    }

    .bio p,
    .links a {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer {
        padding: 24px;
        padding-top: 0;
    }

    .footer span {
        font-size: 9px;
    }

    .video-container {
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 32px;
    }

    .toast {
        bottom: 24px;
        right: 24px;
        left: 24px;
    }
}