@font-face {
    font-family: 'Dethrone';
    src: url('dethrone.ttf') format('truetype'),
         url('dethrone.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'EditUndo';
    src: url('editundo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    background: #000;
    color: #e5e5e5;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    width: 100%;
    max-width: 492px;
    padding: 16px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: max-width 0.4s ease;
    zoom: 0.9; /* Scaled down 10% (from original 1.0, previously 0.8) */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.tabs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #aaa;
}

.tab-btn.active {
    color: #fff;
    font-weight: 500;
}

.nav-right {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 10px;
    color: #888;
}

.views {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
    color: #e5e5e5;
}

.views:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.views::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
}

.views:hover::after {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.help {
    cursor: pointer;
    transition: color 0.2s;
}

.help.term-active {
    color: #4ade80;
}

.tab-content {
    display: none;
    animation: fade 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px; /* space between text and badges */
    margin-bottom: 2px;
}

.logo-text {
    font-family: 'EditUndo', 'VT323', monospace;
    font-size: 36px; /* slightly smaller to adjust for the wider blocky pixel font */
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1; /* keeps element box tight */
    text-transform: uppercase;
}

.section-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.subtitle {
    font-size: 11px;
    color: #777;
    margin-bottom: 12px;
}

.presence-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
    padding: 0;
}

.discord-card {
    background: #090a0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px; /* Smaller padded width from screenshot */
    display: flex;
    align-items: center;
    gap: 12px; /* Tighter native gap */
    position: relative;
    min-height: 64px; /* Accommodate smaller 40px avatar base */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.discord-arrow {
    color: #888;
    font-size: 13px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.discord-card:hover .discord-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.discord-arrow:hover {
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.discord-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* Block right-click context menus */
    -webkit-user-drag: none; /* Block drag saving */
    user-select: none;
    border-radius: inherit;
    filter: brightness(1.25) contrast(1.1);
}

.discord-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #090a0e 0%, #090a0e 30%, rgba(9, 10, 14, 0) 65%);
    /* Allows the white profile background banner to visibly stretch much further to the left, exactly matching the screenshot's contrast fade mapping! */
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.avatar-img {
    width: 40px; /* Native condensed size */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #222;
    pointer-events: none; /* Block right-click context menus */
    -webkit-user-drag: none; /* Block drag/drop saving */
    user-select: none;
}

.discord-status-dot {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 12px; /* perfectly hugs the 40px parent */
    height: 12px;
    background: #f04747;
    border: 3px solid #090a0e; /* increased border width slightly to enforce exact native cutout ratio */
    border-radius: 50%;
}

.discord-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.d-name {
    font-size: 15px; /* Scaled down header */
    font-weight: 600;
    color: #f2f3f5;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

.d-name i {
    color: #888;
    font-size: 16px;
}

.d-badges {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
}

.d-device-badges {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* Slightly tighter gap for device icons */
}

.d-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 22px; /* Fixes height so all icons vertically center the exact same way */
}

.d-badge img,
.d-badge i,
.d-badge svg {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s ease, transform 0.2s ease;
    pointer-events: none; /* Prevents right clicking inline badges */
    -webkit-user-drag: none;
}

.d-badge:hover img,
.d-badge:hover i,
.d-badge:hover svg {
    filter: brightness(1.5); /* brightens the icon itself for an inner glow */
}

.d-device-badges .d-badge i {
    color: #b5bac1;
    transition: all 0.2s ease;
    font-size: 12px; /* Shrunk matching badges visually */
    line-height: 1;
}

.d-device-badges .d-badge:hover i {
    color: #fff;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7));
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.d-badge .tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #111214;
    color: #dbdee1;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 100;
    pointer-events: none;
    line-height: 1;
}

.d-badge .tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #111214;
    border-bottom-right-radius: 2px;
}

.d-badge.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.badge-row {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* space between badges */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 3px 9px;
    margin-left: 8px;
    margin-top: 2.9px; /* offset downward to vertically center properly with text */
}

.badge-row img {
    height: 22px; /* increased to make badges more visible */
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen; /* hides any black background from the cropped screenshots */
}

.d-tag {
    font-size: 12px; /* Condensed sub-tag scale */
    color: #b5bac1;
    margin-top: 1px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
    position: relative;
    padding-bottom: 2px;
    width: fit-content;
}

.d-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.d-tag:hover::after {
    width: 100%;
}

.d-tag:hover {
    color: #fff;
}

.d-tag.copied {
    color: #4ade80;
}

.d-tag.copied::after {
    display: none;
}

.d-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin: 6px 0;
    width: 100%;
    display: none;
}

.d-status {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #dbdee1;
    font-weight: 400;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-word;
}

.d-status img {
    margin-right: 2px;
}

.activity-card {
    background: #090a0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px; /* match discord-card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 72px; /* match discord-card */
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

.ac-header {
    display: none;
}

.ac-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ac-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ac-large-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: #222;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.ac-small-image {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #090a0e;
    background: #222;
    object-fit: cover;
}

.ac-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.ac-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ac-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: #f2f3f5;
    line-height: 1.2;
    margin-bottom: 0;
}

.ac-vol-icon {
    color: #6187cc;
    font-size: 12px;
}

.ac-details-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 400;
    color: #b5bac1;
}

#ac-timer-wrapper {
    display: flex;
    align-items: center;
    color: #b5bac1;
}

#ac-timer {
    color: #b5bac1;
}

#ac-state-wrapper {
    display: flex;
    align-items: center;
    color: #b5bac1;
}

#ac-state {
    color: #b5bac1;
}

#ac-details {
    color: #b5bac1;
}

.ac-verified-wrapper {
    display: flex;
    align-items: center;
    margin-left: 2px;
}

.ac-verified-icon {
    color: #8b5cf6; /* Purple verified color */
    font-size: 12px;
}

/* Spotify Card */
.spotify-card {
    background: #090a0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px; /* match discord-card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 72px; /* match discord-card */
    max-width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

.sp-header {
    display: flex;
    align-items: center;
    gap: 10px; /* reduced */
}

.sp-cover {
    width: 40px; /* reduced from 48px */
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    background: #222;
}

.sp-info {
    flex-grow: 1;
}

.sp-info h3 {
    font-size: 12px; /* reduced from 13px */
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

#sp-title-link {
    transition: color 0.15s ease;
    text-decoration: none;
    color: inherit;
}

#sp-title-link:hover {
    color: #1ed760 !important;
}

.sp-info p {
    font-size: 9px;
    color: #888;
}

.sp-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    margin: -4px 0 0 0;
    width: 100%;
}

.sp-preview {
    background: #1a1a1a;
    color: #ccc;
    font-size: 10px; /* reduced */
    font-weight: 500;
    padding: 4px 10px; /* reduced */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 4px; /* reduced */
    cursor: pointer;
    transition: background 0.2s;
}

.sp-preview:hover {
    background: #222;
}

.sp-preview-text-container {
    display: grid;
    overflow: hidden;
    height: 14px;
    align-items: center;
}

.sp-preview-text {
    grid-area: 1 / 1;
    line-height: 14px;
}

.text-slide-up-in {
    animation: slideUpIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.text-slide-up-out {
    animation: slideUpOut 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideUpIn {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0%); opacity: 1; }
}

@keyframes slideUpOut {
    0% { transform: translateY(0%); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.sp-eq-icon {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    height: 10px;
    width: 12px;
}

.sp-eq-icon span {
    width: 2px;
    background-color: currentColor;
    border-radius: 1px;
    animation: eq-bounce 0.4s infinite alternate ease-in-out;
}

.sp-eq-icon span:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.sp-eq-icon span:nth-child(2) { height: 10px; animation-delay: 0.3s; }
.sp-eq-icon span:nth-child(3) { height: 6px; animation-delay: 0.5s; }

@keyframes eq-bounce {
    0% { height: 2px; }
    100% { height: 10px; }
}

.sp-lyrics-viewport {
    height: 60px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    margin: 4px 0; /* reduced */
}

.sp-lyrics {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sp-lyric-line {
    font-size: 13px;
    color: #555;
    transition: background 0.4s, color 0.4s;
    line-height: 24px;
    height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sp-lyric-line.curr {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    animation: lyricMoveDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes lyricMoveDown {
    0% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}

.sp-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: #666;
    font-variant-numeric: tabular-nums;
    width: calc(100% + 28px); /* stretch both sides into padding */
    margin-left: -14px;
    margin-right: -14px;
}

.sp-progress-bar {
    width: 100%;
    height: 3px;
    background: #222;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.sp-progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
}

.sp-progress-fill {
    height: 100%;
    background: #1db954;
    border-radius: 2px;
    width: 0%;
    position: relative;
    transition: width 0.5s linear;
}

.sp-progress-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #1db954;
    font-size: 16px;
    background: #06070a;
    border-radius: 50%;
    padding: 2px;
}

/* Personal Music Player Card */
/* Personal Music Player Card */
.pm-card {
    background: #06070a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

.pm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pm-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pm-cover {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    background: #222;
    flex-shrink: 0;
}

.pm-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.pm-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-info p {
    font-size: 11px;
    color: #888;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.pm-track-idx {
    font-size: 10px;
    color: #555;
    font-variant-numeric: tabular-nums;
}

.pm-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pm-btn {
    color: #888;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-btn:hover {
    color: #fff;
}

.pm-play-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.pm-play-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
}

.pm-play-wrapper #pm-play {
    font-size: 12px;
    color: #fff;
}

.pm-progress-bar {
    width: 100%;
    height: 2px;
    background: #222;
    border-radius: 1px;
    margin: 12px 0 10px 0;
    position: relative;
}

.pm-progress-fill {
    height: 100%;
    background: #1ccb5b; /* Restored Spotify Green for moving line! */
    border-radius: 1px;
    width: 0%;
}

.pm-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pm-time {
    font-size: 9px;
    color: #555;
    font-variant-numeric: tabular-nums;
    width: 60px;
}

.pm-volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 10px;
    width: 60px;
    justify-content: flex-end;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.pm-volume:hover {
    color: #fff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.pm-vol-bar {
    width: 36px;
    height: 6px; /* Expanded interaction area */
    background: transparent;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.pm-vol-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.pm-vol-fill {
    width: 60%;
    height: 2px;
    background: #888;
    position: absolute;
    border-radius: 1px;
    left: 0;
    pointer-events: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pm-volume:hover .pm-vol-fill {
    background: #1ccb5b; /* Spotify Green */
    box-shadow: 0 0 6px rgba(28, 203, 91, 0.6);
}

/* Projects Card */
.project-card {
    background: #000000; /* fallback base */
    background: linear-gradient(180deg, #220000 0%, #0a0000 50%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    opacity: 0;
}

#projects.active .project-card {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-header {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.p-icon {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ccc;
    flex-shrink: 0;
    object-fit: cover;
}

.p-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.badge {
    background: rgba(255, 255, 255, 0.08);
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 12px;
    color: #aaa;
    font-weight: 400;
    opacity: 0;
}

#projects.active .badge {
    animation: popInBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

@keyframes popInBounce {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.p-info p {
    font-size: 10px;
    color: #777;
    margin-bottom: 6px;
}

.tech-stack {
    display: flex;
    gap: 4px;
}

.tech {
    background: #111;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
}

.tech svg {
    width: 12px;
    height: 12px;
}

.tech.python {
    color: #63a1c8;
    background: #0f151c;
    border: 1px solid rgba(99, 161, 200, 0.3);
}

.tech.nextjs {
    color: #cfcfcf;
    background: #131313;
    border: 1px solid rgba(207, 207, 207, 0.2);
}

.p-link {
    position: absolute;
    right: 0;
    top: 0;
    color: #555;
    font-size: 11px;
    transition: color 0.2s;
}

.p-link:hover {
    color: #ccc;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    margin: 12px -12px -12px -12px; /* pull border out to edges of card */
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pf-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #222;
}

.pf-title {
    font-size: 11px;
    color: #ddd;
    line-height: 1;
    margin-bottom: 2px;
}

.pf-stats {
    font-size: 9px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot-online {
    width: 6px;
    height: 6px;
    background: #23a559;
    border-radius: 50%;
    display: inline-block;
}

.dot-gray {
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
    display: inline-block;
}

.join-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.join-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Biolinks */
.biolinks-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px;
}

.biolink-card {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(var(--accent), 0.3) 0%, rgba(var(--accent), 0.05) 100%);
    border: 1px solid rgba(var(--accent), 0.5);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
    opacity: 0; /* hidden initially for the slide-in animation */
}

.biolink-card:hover {
    background: linear-gradient(90deg, rgba(var(--accent), 0.4) 0%, rgba(var(--accent), 0.12) 100%);
    border-color: rgba(var(--accent), 0.8);
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(var(--accent), 0.2);
}

#biolinks.active .biolink-card:nth-child(1) { animation: slideRightFade 0.5s ease forwards 0.05s; }
#biolinks.active .biolink-card:nth-child(2) { animation: slideRightFade 0.5s ease forwards 0.15s; }
#biolinks.active .biolink-card:nth-child(3) { animation: slideRightFade 0.5s ease forwards 0.25s; }
#biolinks.active .biolink-card:nth-child(4) { animation: slideRightFade 0.5s ease forwards 0.35s; }

@keyframes slideRightFade {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.b-icon {
    font-size: 13px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--accent), 1);
    text-shadow: 0 0 10px rgba(var(--accent), 0.5); /* subtle glow */
}

.b-info {
    flex-grow: 1;
}

.b-title {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.b-user {
    color: #aaa;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.b-user .verified {
    color: rgba(var(--accent), 1);
    font-size: 9px;
    text-shadow: 0 0 8px rgba(var(--accent), 0.5);
}

.b-arrow {
    color: #888;
    font-size: 10px;
}

.b-footer {
    text-align: center;
    font-size: 10px;
    color: #555;
    margin-top: 16px;
    opacity: 0; /* hidden initially */
}

#biolinks.active .b-footer {
    animation: fadeInFooter 0.8s ease forwards 1.5s;
}

@keyframes fadeInFooter {
    to { opacity: 1; }
}

/* Contact */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-link {
    display: inline-flex;
    text-decoration: none;
    font-size: 13px;
    height: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.c-link-roller {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-link-face {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 20px;
}

.face-front {
    color: #999;
}

.face-front i {
    width: 20px;
    text-align: center;
    color: #666;
}

.face-hover {
    color: #fff;
}

.face-hover i {
    width: 20px;
    text-align: center;
    color: #fff;
}

.c-link:hover .c-link-roller {
    transform: translateY(-20px);
}

#contact.active .c-link:nth-child(1) { animation: slideUpFade 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.1s; }
#contact.active .c-link:nth-child(2) { animation: slideUpFade 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s; }
#contact.active .c-link:nth-child(3) { animation: slideUpFade 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hire Me Card */
.hire-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 48px; /* Collapsed state */
    padding-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

#contact.active .hire-card { animation: slideUpFade 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s; }

.hire-card.expanded {
    height: 144px; /* Expanded state */
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.hire-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hire-text-roller {
    height: 18px;
    overflow: hidden;
    flex-grow: 1;
}

.hire-faces {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hire-card.expanded .hire-faces {
    transform: translateY(-18px);
}

.hire-face {
    height: 18px;
    line-height: 18px;
    font-size: 11px;
    color: #b5bac1;
}
.hire-expanded-text {
    color: #fff;
    font-weight: 500;
}

.hire-btn-wrapper {
    height: 22px;
    overflow: hidden;
}

.hire-btn-faces {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hire-card.expanded .hire-btn-faces {
    transform: translateY(-22px);
}

.hire-btn-hidden-face {
    height: 22px;
}

.hire-btn {
    height: 22px;
    background: linear-gradient(90deg, #d4af37, #fff4b0, #d4af37);
    background-size: 200% auto;
    color: #111;
    border: none;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    animation: goldShimmer 2.5s linear infinite;
    box-shadow: 0 0 0px rgba(212, 175, 55, 0); /* Hidden initially to prevent bleed */
    white-space: nowrap;
    transition: box-shadow 0.4s ease, transform 0.2s;
}

.hire-card.expanded .hire-btn {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); /* Glow activates seamlessly on expand */
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.hire-services {
    margin-top: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 11px;
    color: #dbdee1;
    pointer-events: none;
}

.hire-card.expanded .hire-services {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
    pointer-events: auto;
}

.hire-services ul {
    list-style: none;
    padding-left: 2px;
}

.hire-services li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hire-services li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
}

.hire-arrow {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #888;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 6px 30px;
    z-index: 10;
}

.hire-card:hover .hire-arrow {
    color: #aaa;
}

.hire-arrow:hover {
    color: #fff !important;
}

.hire-card.expanded .hire-arrow {
    transform: translateX(-50%) rotate(180deg);
    bottom: 2px;
}
/* Music Player */
.music-section {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

.m-title {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.player {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px 12px;
}

.album-art {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    object-fit: cover;
    background: #222;
}

.track-info {
    flex-grow: 1;
}

.t-title {
    color: #eee;
    font-size: 11px;
    font-weight: 500;
}

.t-artist {
    color: #666;
    font-size: 9px;
    margin-bottom: 4px;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.time {
    font-size: 8px;
    color: #555;
    flex-grow: 1;
}

/* PM Indicator */
.pm-indicator {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 6px;
    position: relative;
    margin: 0;
}

.pm-dot {
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 4px;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pm-dot:hover {
    background: #666;
}

.pm-active-glider {
    position: absolute;
    width: 12px;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy smooth slide */
    pointer-events: none; /* Let clicks pass through to dots underneath */
    left: 0;
    top: 50%;
}

.bars {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-grow: 1;
}

.bar {
    width: 4px;
    background: #333;
    border-radius: 2px;
}

.bar.dot {
    height: 4px;
}

.bar.dot.active {
    background: #d3d3d3;
}

.bar.line {
    height: 1px;
    width: 10px;
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 10px;
}

.vol-bar {
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    position: relative;
}

.vol-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: #888;
    border-radius: 1px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.track-count {
    font-size: 9px;
    color: #555;
}

.ctrl-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    color: #fff;
}

/* Terminal UI */
.terminal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    pointer-events: none; /* Let clicks pass through the modal container */
}

.terminal-modal.active {
    display: block;
}

.terminal-window {
    background: #090a0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 360px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    
    position: absolute;
    top: 10%;
    left: 5%;
    pointer-events: auto; /* Enable clicks inside the window */
}

.terminal-header {
    background: transparent;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: grab;
    user-select: none;
}

.terminal-header:active {
    cursor: grabbing;
}

.terminal-title {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    color: #dfdfdf;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-title i {
    font-size: 14px;
}

.terminal-controls {
    display: flex;
    gap: 16px;
}

.terminal-control-btn {
    color: #888;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.terminal-control-btn:hover {
    color: #fff;
}

.terminal-body {
    padding: 16px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    color: #dfdfdf;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-line {
    word-break: break-all;
    white-space: pre-wrap;
    line-height: 1.5;
}

.terminal-input-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: auto;
    margin-bottom: 4px;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.prompt-symbol {
    color: #4ade80;
    font-weight: bold;
}

.terminal-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    flex-grow: 1;
    outline: none;
}

.terminal-input::placeholder {
    color: #555;
}

/* Scrollbar for terminal */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #090a0e;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Minimized Terminal */
.minimized-term {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #090a0e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    color: #dfdfdf;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: background 0.2s;
}

.minimized-term:hover {
    background: #15161b;
}

.minimized-term.active {
    display: flex;
}

.minimized-term i {
    color: #4ade80;
    font-size: 14px;
}

/* Snake Game UI */
.snake-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1010;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.captcha-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1020;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.captcha-overlay.active {
    display: flex;
}

.snake-modal.active {
    display: flex;
}

.snake-window {
    width: 380px;
}

.snake-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Consolas', 'Courier New', monospace;
    color: #dfdfdf;
}

.snake-stats {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: bold;
}

.snake-game-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    background: #0f1015;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#snake-canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.snake-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(15, 16, 21, 0.85);
    border-radius: 4px;
    gap: 8px;
    text-align: center;
}

.snake-overlay h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
}

.snake-overlay p {
    font-size: 11px;
    color: #aaa;
    margin: 4px 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.start-snake-btn {
    background: #1e293b;
    color: #fff;
    border: 1px solid #334155;
    padding: 6px 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.start-snake-btn:hover {
    background: #334155;
}

.snake-footer {
    text-align: center;
    font-size: 11px;
    color: #888;
    font-family: 'Inter', sans-serif;
}

.demo-entity {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    display: inline-block;
}

.demo-apple {
    background: #ef4444;
}

.demo-snake {
    background: #4ade80;
    margin: 0 1px;
}

/* Captcha UI */
.hcaptcha-mock {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 24px;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hcaptcha-header h4 {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.hcaptcha-header p {
    color: #888;
    text-align: center;
    font-size: 11px;
}

.hcaptcha-box {
    background: #222;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hcaptcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #888;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hcaptcha-checkbox.loading {
    border-color: transparent;
    background: transparent;
}

.hcaptcha-checkbox.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #0ea5e9;
    border-radius: 50%;
    animation: hcaptchaSpin 1s linear infinite;
}

@keyframes hcaptchaSpin {
    to { transform: rotate(360deg); }
}

.hcaptcha-text {
    color: #fff;
    font-size: 14px;
    flex-grow: 1;
}

.hcaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hcaptcha-logo i {
    font-size: 20px;
    margin-bottom: 2px;
}

.hCaptcha {
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

.hCaptcha-terms {
    color: #888;
    font-size: 8px;
}

/* Among Us Screen */
.among-us-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    pointer-events: none;
}

.among-us-screen.active {
    display: flex;
}

.among-us-text {
    font-family: 'VCR OSD Mono', monospace;
    font-size: 16px;
    color: #fff;
    letter-spacing: 2px;
}

/* Among Us Parachute */
.au-parachute {
    position: absolute;
    top: -100px;
    left: 20%;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.6) rotate(-15deg);
    transition: opacity 0.5s;
    pointer-events: none;
}

.au-parachute.falling {
    opacity: 1;
    animation: parachuteFall 6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes parachuteFall {
    0% {
        top: -150px;
        left: 20%;
        transform: scale(0.6) rotate(-15deg);
    }
    30% {
        transform: scale(0.7) rotate(5deg);
    }
    70% {
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        top: 110vh;
        left: 35%;
        transform: scale(0.7) rotate(10deg);
    }
}

.parachute {
    width: 80px;
    height: 40px;
    background: #fff;
    border-radius: 80px 80px 0 0;
    position: relative;
    box-shadow: inset -5px -5px 10px rgba(0,0,0,0.1);
}

.parachute::before, .parachute::after {
    content: '';
    position: absolute;
    bottom: -40px;
    width: 2px;
    height: 40px;
    background: #fff;
}
.parachute::before {
    left: 10px;
    transform: rotate(-25deg);
    transform-origin: top;
}
.parachute::after {
    right: 10px;
    transform: rotate(25deg);
    transform-origin: top;
}

.amongus-yellow {
    width: 36px;
    height: 50px;
    background: #facc15; /* yellow */
    border-radius: 18px 18px 6px 6px;
    position: absolute;
    bottom: -85px;
    left: 22px;
    box-shadow: inset -4px -4px 8px rgba(0,0,0,0.2);
}

.amongus-yellow::before {
    /* visor */
    content: '';
    position: absolute;
    top: 12px;
    right: -4px;
    width: 22px;
    height: 14px;
    background: #93c5fd;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: inset -2px -1px 3px rgba(255,255,255,0.6);
}

.amongus-yellow::after {
    /* backpack */
    content: '';
    position: absolute;
    top: 15px;
    left: -6px;
    width: 10px;
    height: 22px;
    background: #eab308;
    border-radius: 5px;
    box-shadow: inset -1px -1px 3px rgba(0,0,0,0.2);
}

.amongus-legs {
    position: absolute;
    bottom: -10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    box-sizing: border-box;
}

.amongus-legs div {
    width: 10px;
    height: 12px;
    background: #facc15;
    border-radius: 0 0 5px 5px;
    box-shadow: inset -2px -2px 3px rgba(0,0,0,0.2);
}

#fluid {
  position: fixed;
  top: 0; left: 0;
  width: 100dvw;
  height: 100dvh;
  pointer-events: none;
  z-index: 9998;
  display: none;
}
