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

::selection {
    background: #000;
    color: #fff;
}

body {
    background: #fff;
    color: #000;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

main {
    width: 100%;
    max-width: 420px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.profile-pic {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
}

.name {
    font-size: 24px;
    font-weight: normal;
    color: #9b8ab8;
}

.wave {
    display: inline-block;
    animation: sway 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

.about {
    color: #555;
    max-width: 340px;
}

.status {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c4b5dc;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.links a {
    color: #000;
    text-decoration: none;
    position: relative;
}

.links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    transition: background 0.15s;
}

.links a:hover::after {
    background: #9b8ab8;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    position: relative;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    transition: background 0.15s;
}

.dropdown:hover .dropdown-trigger::after {
    background: #9b8ab8;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s, visibility 0.15s;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    color: #555;
}

.dropdown-menu a:hover {
    color: #000;
}

.discord {
    color: #888;
    font-size: 12px;
    cursor: default;
    user-select: all;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #111;
        color: #ddd;
    }

    ::selection {
        background: #fff;
        color: #000;
    }

    .about {
        color: #888;
    }

    .links a {
        color: #ddd;
    }

    .links a::after {
        background: #444;
    }

    .links a:hover::after {
        background: #c4b5dc;
    }

    .dropdown-trigger::after {
        background: #444;
    }

    .dropdown:hover .dropdown-trigger::after {
        background: #c4b5dc;
    }

    .dropdown-menu a {
        color: #888;
    }

    .dropdown-menu a:hover {
        color: #ddd;
    }

    .discord {
        color: #666;
    }
}