@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
    color-scheme: dark;

    --bg-void:    #030305;
    --bg-deep:    #06070d;
    --bg-surface: rgba(10, 12, 20, 0.72);
    --bg-raised:  rgba(16, 18, 30, 0.85);
    --bg-hover:   rgba(255,255,255,0.04);

    --border-dim:    rgba(255,255,255,0.055);
    --border-mid:    rgba(255,255,255,0.11);
    --border-bright: rgba(255,255,255,0.22);
    --border-lime:   rgba(184,255,90,0.28);
    --border-blue:   rgba(90,159,255,0.28);

    --text-primary:   #eef1ff;
    --text-secondary: #8a92b2;
    --text-muted:     #434866;

    --accent-lime:        #b8ff5a;
    --accent-lime-dim:    rgba(184,255,90,0.08);
    --accent-lime-mid:    rgba(184,255,90,0.16);
    --accent-blue:        #5a9fff;
    --accent-blue-dim:    rgba(90,159,255,0.08);
    --accent-purple:      #a478ff;
    --accent-purple-dim:  rgba(164,120,255,0.08);
    --accent-green:       #1ed760;

    --font-mono:    'JetBrains Mono', monospace;
    --font-display: 'Syne', sans-serif;
    --font-body:    'Inter', sans-serif;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 20px;

    --ease:      200ms ease;
    --ease-slow: 420ms cubic-bezier(0.16,1,0.3,1);
}

/* ══════════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.06) transparent;
}
html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 2px; }

body {
    font-family: var(--font-body);
    background: var(--bg-void);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════
   BACKGROUND CANVAS
══════════════════════════════════════════════ */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.page-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 100vh;
    max-width: 1340px;
    margin: 0 auto;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid var(--border-dim);
    scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }

.main-content {
    padding: 48px 56px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ══════════════════════════════════════════════
   GLASS PANEL — reusable surface
══════════════════════════════════════════════ */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease-slow);
}
.glass-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,rgba(255,255,255,0.035) 0%,transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.glass-panel:hover {
    border-color: var(--border-mid);
    box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* ══════════════════════════════════════════════
   PROFILE CARD
══════════════════════════════════════════════ */
.profile-card {
    display: block;
    text-decoration: none;
    border-radius: var(--r-xl);
    background: var(--bg-surface);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid var(--border-dim);
    overflow: hidden;
    position: relative;
    transition: border-color var(--ease), box-shadow var(--ease-slow), transform var(--ease-slow);
}
.profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(184,255,90,0.025) 0%,transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.profile-card:hover {
    border-color: var(--border-lime);
    box-shadow: 0 0 32px rgba(184,255,90,0.07), 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.profile-card__banner {
    position: relative;
    width: 100%;
    height: 96px;
    overflow: hidden;
    flex-shrink: 0;
}
.profile-card__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) saturate(0.8);
    transition: filter var(--ease-slow);
}
.profile-card:hover .profile-card__banner-img { filter: brightness(0.9) saturate(1.05); }
.profile-card__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(6,7,13,0.85) 100%);
}

.profile-card__body {
    padding: 0 16px 16px;
    position: relative;
    z-index: 1;
}

.profile-card__avatar-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -38px;
    margin-bottom: 12px;
}

.profile-card__avatar-wrap {
    position: relative;
    width: 76px;
    height: 76px;
}
.profile-card__avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-void);
    display: block;
    transition: border-color var(--ease);
}
.profile-card:hover .profile-card__avatar { border-color: rgba(184,255,90,0.45); }
.profile-card__avatar-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 94px; height: 94px;
    pointer-events: none;
}
.profile-card__status-dot {
    position: absolute;
    bottom: 3px; right: 3px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #23a559;
    border: 3px solid var(--bg-void);
    box-shadow: 0 0 10px rgba(35,165,89,0.8);
}
.profile-card__badge {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-lime);
    background: var(--accent-lime-dim);
    border: 1px solid rgba(184,255,90,0.25);
    border-radius: var(--r-sm);
    padding: 4px 9px;
    align-self: flex-end;
    margin-bottom: 4px;
}
.profile-card__custom-status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dim);
    border-radius: var(--r-md);
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.profile-card__custom-status img { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.profile-card__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.1;
}
.profile-card__tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}
.profile-card__divider {
    height: 1px;
    background: var(--border-dim);
    margin: 12px 0;
}
.profile-card__about { display: flex; flex-direction: column; gap: 5px; }
.profile-card__about-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.profile-card__about-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   TELEGRAM LINK
══════════════════════════════════════════════ */
.tg-link {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 11px;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border-dim);
    background: var(--bg-raised);
    backdrop-filter: blur(16px);
    text-decoration: none;
    transition: border-color var(--ease), background var(--ease), box-shadow var(--ease-slow);
}
.tg-link:hover {
    background: rgba(90,159,255,0.07);
    border-color: var(--border-blue);
    box-shadow: 0 0 24px rgba(90,159,255,0.07);
}
.tg-link__icon {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-sm);
    background: var(--accent-blue-dim);
    border: 1px solid rgba(90,159,255,0.2);
    color: var(--accent-blue);
    transition: background var(--ease), box-shadow var(--ease);
}
.tg-link:hover .tg-link__icon {
    background: rgba(90,159,255,0.14);
    box-shadow: 0 0 14px rgba(90,159,255,0.3);
}
.tg-link__label {
    grid-row: 1; grid-column: 2;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.tg-link__handle {
    grid-row: 2; grid-column: 2;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}
.tg-link__arrow {
    grid-row: 1 / 3; grid-column: 3;
    color: var(--text-muted);
    font-size: 15px;
    transition: transform var(--ease), color var(--ease);
}
.tg-link:hover .tg-link__arrow { transform: translate(2px,-2px); color: var(--accent-blue); }

/* ══════════════════════════════════════════════
   SPOTIFY SIDEBAR WIDGET
══════════════════════════════════════════════ */
.spotify-sidebar {
    border-radius: var(--r-xl);
    border: 1px solid var(--border-dim);
    background: var(--bg-surface);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease-slow);
}
.spotify-sidebar:hover {
    border-color: rgba(30,215,96,0.2);
    box-shadow: 0 0 28px rgba(30,215,96,0.05);
}
.spotify-sidebar__label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--border-dim);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.spotify-sidebar__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px rgba(30,215,96,0.85);
    animation: pulse-green 2.2s ease-in-out infinite;
}
.spotify-sidebar__panel { padding: 16px; }

/* ══════════════════════════════════════════════
   SPOTIFY PLAYER
══════════════════════════════════════════════ */
.sp-player {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: start;
    cursor: pointer;
}
.sp-player__cover {
    width: 76px; height: 76px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 1px solid var(--border-mid);
    display: block;
    flex-shrink: 0;
    background: var(--bg-raised);
    transition: transform var(--ease), box-shadow var(--ease);
}
.sp-player:hover .sp-player__cover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.sp-player__meta { min-width: 0; }
.sp-player__state {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.sp-player__state::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px rgba(30,215,96,0.9);
    animation: pulse-green 2.1s ease-in-out infinite;
    flex-shrink: 0;
}
.sp-player.is-last-played .sp-player__state::before {
    background: #e6c84a;
    box-shadow: 0 0 8px rgba(230,200,74,0.9);
    animation: none;
}
.sp-player__title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-player__artists {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sp-player__progress-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    gap: 5px;
    align-items: center;
}
.sp-player__time {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
}
.sp-player__bar {
    height: 2px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
}
.sp-player__bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-lime));
    border-radius: 999px;
    width: 0;
    transition: width 0.9s linear;
}
.sp-preview-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 9px;
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid var(--border-dim);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ease);
}
.sp-preview-btn:hover:not(:disabled) {
    border-color: rgba(30,215,96,0.4);
    color: var(--accent-green);
    background: rgba(30,215,96,0.08);
}
.sp-preview-btn:disabled { opacity: 0.22; cursor: default; }
.sp-empty, .sp-error {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.02em;
    padding: 12px 14px;
    border-radius: var(--r-md);
}
.sp-empty { color: var(--text-muted); background: var(--bg-raised); border: 1px solid var(--border-dim); }
.sp-error { color: #ff8fa0; background: rgba(255,90,110,0.07); border: 1px solid rgba(255,90,110,0.18); }
.hidden { display: none !important; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    padding: 4px 0;
    animation: fadeInUp 0.9s var(--ease-slow) both;
}
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.hero__tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-lime);
    background: var(--accent-lime-dim);
    border: 1px solid rgba(184,255,90,0.22);
    border-radius: 999px;
    padding: 3px 10px;
}
.hero__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(184,255,90,0.35), transparent);
}
.hero__year {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(60px, 7vw, 96px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.9;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.hero__title-accent {
    color: var(--accent-lime);
    text-shadow: 0 0 48px rgba(184,255,90,0.35), 0 0 100px rgba(184,255,90,0.12);
}
.hero__subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   BENTO SECTION
══════════════════════════════════════════════ */
.bento-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 0.9s var(--ease-slow) both;
}
.bento-section:nth-child(2) { animation-delay: 0.08s; }
.bento-section:nth-child(3) { animation-delay: 0.16s; }

.bento-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.bento-section__title {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.bento-section__count {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    background: var(--bg-raised);
    border: 1px solid var(--border-dim);
    border-radius: 999px;
    padding: 2px 8px;
}

/* ══════════════════════════════════════════════
   PARTICIPATION SLIDER
══════════════════════════════════════════════ */
.participation-slider { overflow: hidden; }
.participation-slider__viewport { overflow: hidden; }
.participation-slider__track {
    display: flex;
    transition: transform 380ms cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* ══════════════════════════════════════════════
   PROJECT CARD  (p-card)
══════════════════════════════════════════════ */
.p-card {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    transition: background var(--ease);
    position: relative;
    z-index: 1;
}
.p-card:hover { background: rgba(255,255,255,0.02); }

.p-card__logo {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 1px solid var(--border-mid);
    display: block;
    background: var(--bg-raised);
    flex-shrink: 0;
    transition: border-color var(--ease), transform var(--ease);
}
.p-card:hover .p-card__logo { border-color: var(--border-bright); transform: scale(1.06); }

.p-card__body { flex: 1; min-width: 0; }

.p-card__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-card__official {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #23a559;
    flex-shrink: 0;
}
.p-card__period {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 3px;
    letter-spacing: 0.03em;
}
.p-card__role {
    display: inline-flex;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-dim);
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}
.p-card__arrow {
    color: var(--text-muted);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform var(--ease), color var(--ease);
}
.p-card:hover .p-card__arrow { transform: translateX(4px); color: var(--accent-lime); }

.participation-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px 14px;
    border-top: 1px solid var(--border-dim);
}
.participation-slider__dot {
    width: 4px; height: 4px;
    border-radius: 999px;
    border: none; padding: 0;
    background: var(--border-mid);
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.participation-slider__dot.is-active {
    width: 18px;
    background: var(--accent-lime);
    box-shadow: 0 0 10px rgba(184,255,90,0.55);
}
.participation-slider__dot:hover { background: var(--text-muted); }

/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews-grid {
    column-count: 2;
    column-gap: 10px;
}
.reviews-grid__column { display: contents; }

.review {
    display: block;
    break-inside: avoid;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: var(--r-lg);
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dim);
    position: relative;
    overflow: hidden;
    transition: border-color var(--ease), transform var(--ease-slow), box-shadow var(--ease-slow);
    animation: fadeInUp 0.7s var(--ease-slow) both;
}
.review::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg,rgba(255,255,255,0.025) 0%,transparent 50%);
    pointer-events: none;
}
.review:hover {
    border-color: var(--border-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.review__head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.review__avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-mid);
    background: var(--bg-raised);
    display: block;
    flex-shrink: 0;
}
.review__info { flex: 1; min-width: 0; }
.review__name {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}
.review__meta {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 1px;
}
.review__stars {
    color: #f5b74a;
    font-size: 11px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(245,183,74,0.5);
    flex-shrink: 0;
}
.review__text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════
   IDLE OVERLAY
══════════════════════════════════════════════ */
.idle-overlay {
    position: fixed; inset: 0;
    z-index: 9997;
    background: rgba(3,3,5,0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    backdrop-filter: blur(24px);
}
.idle-overlay.idle-overlay--visible { opacity: 1; visibility: visible; pointer-events: auto; }
.idle-overlay[hidden] { display: none !important; }
.idle-overlay__dvd-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.idle-overlay__dvd { position: absolute; width: 200px; height: 120px; object-fit: contain; }
.idle-overlay__text {
    position: relative; z-index: 2;
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(20px,4vw,32px);
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
}
.idle-overlay__btn {
    position: relative; z-index: 2;
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 11px 26px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent-lime);
    text-decoration: none;
    border-radius: var(--r-md);
    border: 1px solid rgba(184,255,90,0.28);
    background: var(--accent-lime-dim);
    transition: all 0.2s ease;
}
.idle-overlay__btn:hover { background: var(--accent-lime-mid); box-shadow: 0 0 20px rgba(184,255,90,0.14); }

/* ══════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════ */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-void);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    user-select: none;
}
.loader.loader--hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__fall { position: absolute; left: 50%; top: 0; transform: translate(-50%,-100%); pointer-events: none; }
.loader__img { display: block; width: min(220px,55vw); height: auto; pointer-events: none; user-select: none; }
.loader[data-variation="0"] .loader__fall { animation: loaderFall 2.7s ease-in-out forwards; }
.loader[data-variation="0"] .loader__clouds-wrap { display: none; }
@keyframes loaderFall { to { transform: translate(-50%,100vh); } }
.loader[data-variation="1"] .loader__fall { z-index: 2; animation: loaderFallThenLift 2.7s forwards; }
.loader[data-variation="1"] .loader__clouds-wrap {
    position: absolute; left: 50%; top: 0; width: min(280px,65vw);
    z-index: 1; pointer-events: none; animation: loaderCloudsCatch 2.7s forwards;
}
.loader[data-variation="1"] .loader__clouds-img { display: block; width: 100%; height: auto; user-select: none; }
@keyframes loaderFallThenLift {
    0%   { transform: translate(-50%,-100%); animation-timing-function: ease-in; }
    58%  { transform: translate(-50%,72vh);  animation-timing-function: ease-in; }
    62%  { transform: translate(-50%,70vh);  animation-timing-function: ease-in; }
    65%  { transform: translate(-50%,68vh);  animation-timing-function: ease-out; }
    100% { transform: translate(-50%,35vh); }
}
@keyframes loaderCloudsCatch {
    0%   { transform: translate(-50%,120vh); animation-timing-function: ease-in; }
    58%  { transform: translate(-50%,73vh);  animation-timing-function: ease-in; }
    62%  { transform: translate(-50%,70vh);  animation-timing-function: ease-in; }
    65%  { transform: translate(-50%,68vh);  animation-timing-function: ease-out; }
    100% { transform: translate(-50%,50vh); }
}

/* ══════════════════════════════════════════════
   MISC
══════════════════════════════════════════════ */
.corner-cat {
    position: fixed; bottom: 0; right: 0;
    z-index: 9998; pointer-events: none; opacity: 0.65;
}
.corner-cat img { display: block; width: 80px; height: auto; }

.bg-music-mute {
    position: fixed; bottom: 20px; left: 20px;
    z-index: 11; width: 38px; height: 38px;
    padding: 0; border: 1px solid var(--border-mid);
    border-radius: var(--r-md);
    background: var(--bg-raised);
    backdrop-filter: blur(12px);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.5s ease, background 0.2s ease;
}
.bg-music-mute--visible { opacity: 1; }
.bg-music-mute:hover { background: var(--bg-hover); color: var(--text-primary); }
.bg-music-mute__icon {
    position: absolute; display: flex;
    align-items: center; justify-content: center;
    opacity: 1; transition: opacity 0.2s ease; pointer-events: none;
}
.bg-music-mute__icon--off   { opacity: 0; }
.bg-music-mute__icon--play  { opacity: 0; }
.bg-music-mute--start .bg-music-mute__icon--play { opacity: 1; }
.bg-music-mute--start .bg-music-mute__icon--on,
.bg-music-mute--start .bg-music-mute__icon--off  { opacity: 0; }
.bg-music-mute--muted .bg-music-mute__icon--on  { opacity: 0; }
.bg-music-mute--muted .bg-music-mute__icon--off { opacity: 1; }

/* ══════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════ */
@keyframes pulse-lime {
    0%,100% { transform: scale(1); opacity: 1; }
    50%     { transform: scale(0.55); opacity: 0.4; }
}
@keyframes pulse-green {
    0%,100% { transform: scale(1); opacity: 1; }
    50%     { transform: scale(0.5); opacity: 0.35; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .page-wrapper { grid-template-columns: 290px 1fr; }
    .main-content { padding: 40px 40px; }
}
@media (max-width: 960px) {
    .page-wrapper { display: block; }
    .sidebar {
        position: static; height: auto;
        border-right: none; border-bottom: 1px solid var(--border-dim);
        padding: 24px 24px;
        display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .main-content { padding: 32px 28px; }
}
@media (max-width: 600px) {
    .sidebar { grid-template-columns: 1fr; padding: 16px; }
    .reviews-grid { column-count: 1; }
    .main-content { padding: 16px; gap: 20px; }
    .sp-player { grid-template-columns: 66px 1fr; }
    .sp-player__cover { width: 66px; height: 66px; }
    .bg-music-mute { bottom: 12px; left: 12px; }
    .hero__title { font-size: clamp(46px,13vw,64px); }
}

/* ══════════════════════════════════════════════
   USER SELECT
══════════════════════════════════════════════ */
.sp-player__title, .sp-player__artists, .sp-player__state,
.hero__title, .hero__subtitle,
.profile-card__name, .profile-card__tag,
.bento-section__title, .p-card__title, .p-card__period, .p-card__role,
.review__name, .review__meta, .review__text,
.tg-link__label, .tg-link__handle {
    user-select: none;
    -webkit-user-select: none;
}
