/* =========================================================
   Anthem Atlas — Core Styles
   Minimal · Modern · Glassmorphism
   ========================================================= */

:root {
    --bg: #0b0d12;
    --bg-soft: #12151c;
    --fg: #f5f5f7;
    --fg-soft: rgba(255, 255, 255, 0.6);
    --fg-mute: rgba(255, 255, 255, 0.35);
    --accent: #e5e7eb;            /* dynamic — overridden by JS with flag color */
    --accent-rgb: 229, 231, 235;
    --country-fill: rgba(255, 255, 255, 0.06);
    --country-stroke: rgba(255, 255, 255, 0.12);
    --country-hover: rgba(255, 255, 255, 0.18);
    --glass-bg: rgba(20, 22, 30, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 22px;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.005em;
}

.font-serif {
    font-family: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
    letter-spacing: -0.01em;
}

/* =========================================================
   Atmospheric orbs & grid
   ========================================================= */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    transition: background 1.2s ease;
    will-change: transform;
}
.orb-accent {
    top: -12%;
    left: 20%;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.28), transparent 65%);
    animation: floatSlow 22s ease-in-out infinite;
}
.orb-blue {
    bottom: -25%;
    right: -10%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 65%);
    animation: floatSlow 28s ease-in-out infinite reverse;
}
.orb-purple {
    top: 30%;
    right: 25%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 65%);
    animation: floatSlow 34s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* =========================================================
   Glassmorphism panels
   ========================================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(160%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.6s ease;
}

.glass-soft {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-pill {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
}

/* =========================================================
   Nav & buttons
   ========================================================= */
.nav-pill {
    font-size: 12px;
    font-weight: 500;
    color: var(--fg-soft);
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}
.nav-pill:hover { color: var(--fg); }
.nav-pill-active {
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--fg);
}

.icon-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--fg-soft);
    cursor: pointer;
    transition: all 0.25s ease;
}
.icon-btn:hover {
    color: var(--fg);
    border-color: rgba(var(--accent-rgb), 0.4);
    transform: translateY(-1px);
}

.icon-btn-sm {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    color: var(--fg-soft);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.icon-btn-sm:hover { color: var(--fg); }

/* =========================================================
   Play button (primary action)
   ========================================================= */
.play-btn {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgb(var(--accent-rgb));
    color: #0b0d12;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.35);
    flex-shrink: 0;
}
.play-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.55);
}
.play-btn:active { transform: scale(0.96); }

/* Pulse to draw attention when autoplay is blocked */
.play-btn.pulse {
    animation: playBtnPulse 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 3;
}
@keyframes playBtnPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(var(--accent-rgb), 0), 0 0 50px rgba(var(--accent-rgb), 0.7);
        transform: scale(1.08);
    }
}

/* =========================================================
   Seek & volume bars
   ========================================================= */
.seek-track {
    position: relative;
    flex: 1;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: height 0.2s ease;
}
.seek-track:hover { height: 8px; }

.seek-buffered {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}
.seek-progress {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0%;
    background: rgb(var(--accent-rgb));
    border-radius: 999px;
    transition: width 0.1s linear, background 0.6s ease;
    box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.65);
}
.seek-thumb {
    position: absolute;
    left: 0%;
    top: 50%;
    width: 14px; height: 14px;
    transform: translate(-50%, -50%) scale(0);
    background: rgb(var(--accent-rgb));
    border-radius: 50%;
    transition: transform 0.2s ease, left 0.1s linear;
    box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.85);
}
.seek-track:hover .seek-thumb { transform: translate(-50%, -50%) scale(1); }

.volume-track {
    position: relative;
    width: 70px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    cursor: pointer;
}
.volume-progress {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 75%;
    background: rgba(var(--accent-rgb), 0.8);
    border-radius: 999px;
    transition: background 0.6s ease;
}

/* =========================================================
   Flag color swatch
   ========================================================= */
.flag-swatch {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #444, #222);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    transition: background 0.6s ease;
    flex-shrink: 0;
}

/* =========================================================
   Globe container (Globe.gl / Three.js renders its own canvas)
   ========================================================= */
#world-globe {
    width: 100%;
    height: 100%;
    cursor: grab;
}
#world-globe:active { cursor: grabbing; }
#world-globe canvas {
    outline: none;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,0.55));
}


/* =========================================================
   Hover floating label
   ========================================================= */
.hover-label {
    position: fixed;
    pointer-events: none;
    z-index: 50;
    padding: 6px 12px;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--fg);
    opacity: 0;
    transform: translate(-50%, -140%);
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}
.hover-label.visible {
    opacity: 1;
    transform: translate(-50%, -170%);
}

/* =========================================================
   Anthem info — 国名 / 曲名 / 原題
   ========================================================= */

/* Dense white fade backdrop behind the text (radial, non-interactive) */
#lyrics-panel {
    padding: 56px 88px 48px;
}
#lyrics-panel::before {
    content: "";
    position: absolute;
    inset: -20% -25%;
    z-index: -1;
    background:
        radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.55) 0%,
            rgba(255, 255, 255, 0.38) 25%,
            rgba(255, 255, 255, 0.18) 50%,
            rgba(255, 255, 255, 0.06) 72%,
            rgba(255, 255, 255, 0)    90%);
    filter: blur(14px);
    pointer-events: none;
}

.lyric-line {
    display: block;
    opacity: 0;
    transform: translateY(8px);
    transition: color 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}
.lyric-line.enter {
    animation: lyricEnter 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes lyricEnter {
    from { opacity: 0; transform: translateY(10px); filter: blur(4px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Row 1 — 国名（大きめ・上品） */
.lyric-country {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--fg);
    letter-spacing: 0.02em;
    margin-bottom: 0.35em;
    opacity: 0.92;
}

/* Row 2 — 曲名（メイン、アクセントカラー） */
.lyric-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: rgb(var(--accent-rgb));
    text-shadow: 0 0 32px rgba(var(--accent-rgb), 0.35);
    letter-spacing: -0.01em;
    margin-bottom: 0.3em;
}

/* Row 3 — 原題（現地言語、セリフ体イタリック） */
.lyric-original {
    /* Strong serif stack covering Latin / CJK / Cyrillic / Arabic / Devanagari / Thai */
    font-family:
        'Playfair Display',
        'Noto Serif JP',
        'Noto Serif',
        'Noto Serif CJK SC',
        'Noto Naskh Arabic',
        'Noto Serif Devanagari',
        'Noto Serif Thai',
        'Georgia',
        'Times New Roman',
        serif;
    font-style: italic;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--fg-soft);
    opacity: 0.85;
}

/* =========================================================
   Player bar — anchored bottom-center of the viewport
   Uses margin-based centering to bypass Tailwind transform utils.
   ========================================================= */
#player-bar {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#player-bar.player-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#player-bar.player-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
}

/* =========================================================
   Animations
   ========================================================= */
.fade-in-up {
    animation: fadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

#country-card {
    transform: translateY(-8px);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#lyrics-panel {
    transform: translate(-50%, 8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
#lyrics-panel.reveal { transform: translate(-50%, 0) !important; }

/* =========================================================
   Search modal — glassmorphism command palette
   ========================================================= */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.search-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 14, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-dialog {
    position: relative;
    width: min(92%, 640px);
    border-radius: 18px;
    padding: 14px 14px 10px;
    transform: translateY(-10px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.search-modal.is-open .search-dialog {
    transform: translateY(0) scale(1);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 15px;
    font-family: inherit;
    letter-spacing: -0.005em;
}
.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.search-kbd,
.search-hint kbd {
    display: inline-block;
    font-family: 'Inter', monospace;
    font-size: 10px;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.search-results {
    margin-top: 8px;
    max-height: 52vh;
    overflow-y: auto;
    padding: 4px 2px 2px;
}
.search-results:empty {
    display: none;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: 1px solid transparent;
}
.search-item:hover,
.search-item.is-active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}
.search-item-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
}
.search-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.search-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-item-anthem {
    font-family: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
    font-style: italic;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-item-badge {
    flex-shrink: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}
.search-item-badge.has-audio {
    background: rgba(var(--accent-rgb), 0.12);
    color: rgba(var(--accent-rgb), 0.9);
}
.search-item mark {
    background: transparent;
    color: rgba(var(--accent-rgb), 1);
    font-weight: 600;
}

.search-empty {
    padding: 22px 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.search-hint {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 10px 4px 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 6px;
}
.search-hint span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =========================================================
   Info modal — selected country details
   ========================================================= */
.info-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vh 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.info-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.info-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 14, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.info-dialog {
    position: relative;
    width: min(94%, 540px);
    border-radius: 20px;
    padding: 22px 22px 14px;
    transform: translateY(-10px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 88vh;
    overflow-y: auto;
}
.info-modal.is-open .info-dialog {
    transform: translateY(0) scale(1);
}

.info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.info-header-left { min-width: 0; flex: 1; }
.info-eyebrow {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(var(--accent-rgb), 0.85);
    margin-bottom: 8px;
}
.info-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--fg);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
    word-break: break-word;
}
.info-subtitle {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--fg-mute);
    letter-spacing: 0.04em;
}
.info-close {
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.info-close:hover {
    color: var(--fg);
    border-color: rgba(var(--accent-rgb), 0.4);
}

/* Empty state */
.info-empty {
    padding: 40px 12px 28px;
    text-align: center;
}
.info-empty-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.1);
    color: rgba(var(--accent-rgb), 0.9);
    border: 1px solid rgba(var(--accent-rgb), 0.18);
}
.info-empty-text {
    font-size: 14px;
    color: var(--fg-soft);
    margin: 0 0 4px;
}
.info-empty-hint {
    font-size: 12px;
    color: var(--fg-mute);
    margin: 0;
}

/* Content */
.info-content {
    padding-top: 18px;
}
.info-section {
    margin-bottom: 18px;
}
.info-section-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fg-mute);
    margin: 0 0 8px;
    font-weight: 500;
}
.info-anthem {
    font-size: 20px;
    font-style: italic;
    color: var(--fg);
    margin: 0 0 4px;
    line-height: 1.3;
}
.info-anthem-native {
    font-size: 13px;
    color: var(--fg-soft);
    margin: 0;
    letter-spacing: 0.01em;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 4px;
}
.info-cell {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.info-cell-wide { grid-column: span 2; }
.info-cell-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fg-mute);
}
.info-cell-value {
    font-size: 14px;
    color: var(--fg);
    font-weight: 500;
}

.info-flag-colors {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.info-flag-swatch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-family: 'Inter', monospace;
    color: var(--fg-soft);
    letter-spacing: 0.04em;
}
.info-flag-swatch-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.info-audio-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.info-audio-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fg-mute);
    flex-shrink: 0;
}
.info-audio-status.has-audio {
    color: var(--fg);
}
.info-audio-status.has-audio::before {
    background: rgb(var(--accent-rgb));
    box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
}

.info-source {
    margin: 14px 2px 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.info-hint {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 14px 4px 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 14px;
}
.info-hint kbd {
    display: inline-block;
    font-family: 'Inter', monospace;
    font-size: 10px;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    margin-right: 6px;
}

/* Nav pill interactive state */
.nav-pill { cursor: pointer; border: none; background: transparent; }

/* Scrollbar minimal */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
}
