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

:root {
    --bg-color: #0b0d10;
    --text-main: #eaeaf0;
    --text-dim: #88888b;
    --accent: #7c7cff;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

main {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animations */
@keyframes linkReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.center-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Profile Section */
.intro-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pfp {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px;
    opacity: 0;
    animation: linkReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.pfp:hover {
    filter: grayscale(0%);
}

.intro {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-main);
    /* Reveal */
    opacity: 0;
    animation: linkReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.badge {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    font-size: 0.8rem;
    display: block;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 0 0 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    user-select: none;
    animation: linkReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

/* Navigation Links */
.link-area {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
}

.exit-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dim);
    font-family: "Overpass", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: linkReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.exit-link:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Desktop Dot */
.exit-link::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-link:hover::after {
    transform: translateX(-50%) scale(1);
}

/* Staggering */
.exit-link:nth-child(1) { animation-delay: 0.4s; }
.exit-link:nth-child(2) { animation-delay: 0.5s; }
.exit-link:nth-child(3) { animation-delay: 0.6s; }
.exit-link:nth-child(4) { animation-delay: 0.7s; }

/* Mobile Tweak */
@media (max-width: 480px) {
    .link-area {
        flex-direction: column;
        gap: 1rem;
    }

    .exit-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
    }

    .exit-link::after {
        left: 100%;
        top: 50%;
        bottom: auto;
        margin-left: 10px;
        transform: translateY(-50%) scale(0);
        pointer-events: none;
    }

    .exit-link:active::after,
    .exit-link:hover::after {
        transform: translateY(-50%) scale(1);
    }
}
