/* Auth-aware side menu */
:root {
    --sidebar-expanded-width: 268px;
    --sidebar-collapsed-width: 104px;
    --sidebar-width: var(--sidebar-expanded-width);
    --sidebar-gap: 24px;
}

body.sidebar-is-collapsed {
    --sidebar-width: var(--sidebar-collapsed-width);
}

.sidebar-toggle {
    display: none;
}

.sidebar-toggle[aria-expanded="true"] .nav-menu-icon {
    background: transparent;
}

.sidebar-toggle[aria-expanded="true"] .nav-menu-icon::before {
    transform: rotate(45deg);
}

.sidebar-toggle[aria-expanded="true"] .nav-menu-icon::after {
    transform: rotate(-45deg);
}

.site-sidebar {
    position: fixed;
    top: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 45;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: var(--sidebar-width);
    padding: 12px;
    overflow: hidden auto;
    border: 1px solid rgb(var(--neon-primary-rgb) / 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 0%, rgb(var(--neon-primary-rgb) / 0.22), transparent 31%),
        radial-gradient(circle at 86% 13%, rgb(var(--neon-secondary-rgb) / 0.16), transparent 32%),
        linear-gradient(135deg, var(--neon-soft), transparent 36%, var(--neon-secondary-soft)),
        linear-gradient(180deg, rgba(18, 20, 34, 0.97), rgba(5, 8, 19, 0.97)),
        rgba(7, 10, 20, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgb(var(--neon-secondary-rgb) / 0.14),
        0 0 0 1px rgba(3, 6, 17, 0.74),
        0 0 30px rgb(var(--neon-primary-rgb) / 0.17),
        0 0 62px rgb(var(--neon-secondary-rgb) / 0.12),
        0 0 44px rgb(var(--neon-primary-rgb) / var(--time-sidebar-glow-opacity)),
        0 28px 80px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(24px) saturate(1.12);
    scrollbar-width: thin;
    scrollbar-color: rgba(167, 184, 218, 0.28) transparent;
    transition:
        width 190ms ease,
        padding 190ms ease,
        transform 190ms ease;
}

.site-sidebar::before,
.site-sidebar::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.site-sidebar::before {
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 14% 9%, rgb(var(--neon-primary-rgb) / 0.12), transparent 28%),
        radial-gradient(circle at 94% 84%, rgb(var(--neon-secondary-rgb) / 0.1), transparent 30%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 23%, transparent 74%, rgba(255, 255, 255, 0.035)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%);
}

.site-sidebar::after {
    top: 14px;
    bottom: 14px;
    left: 0;
    z-index: 0;
    width: 2px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, transparent, var(--neon-primary), var(--neon-secondary), transparent);
    box-shadow:
        0 0 18px var(--neon-glow),
        0 0 32px rgb(var(--neon-secondary-rgb) / 0.28);
    opacity: 0.86;
}

.site-sidebar > * {
    position: relative;
    z-index: 1;
}

.sidebar-brand {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 8px;
    align-items: center;
    padding-bottom: 2px;
}

.site-sidebar .brand {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    width: 100%;
    padding: 6px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 76%);
    transition:
        background-color 160ms ease,
        transform 160ms ease;
}

.site-sidebar .brand:hover,
.site-sidebar .brand:focus-visible {
    background-color: rgba(255, 255, 255, 0.035);
    transform: translateY(-1px);
}

.sidebar-collapse-toggle {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgb(var(--neon-primary-rgb) / 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, var(--neon-soft), var(--neon-secondary-soft)),
        rgba(8, 13, 27, 0.86);
    color: var(--text);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 26px rgba(0, 0, 0, 0.24);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.sidebar-collapse-toggle:hover,
.sidebar-collapse-toggle:focus-visible {
    border-color: var(--neon-line);
    background-color: var(--neon-soft);
    color: #ffffff;
    transform: translateY(-1px);
}

.sidebar-collapse-icon {
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url("../icons/lucide/panel-left-close.svg") center / contain no-repeat;
    mask: url("../icons/lucide/panel-left-close.svg") center / contain no-repeat;
}

.site-sidebar .brand-logo {
    width: 46px;
    height: 46px;
    max-width: none;
    border-radius: 12px;
    object-fit: cover;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.13),
        0 12px 26px rgba(0, 0, 0, 0.28),
        0 0 24px rgb(var(--neon-secondary-rgb) / 0.16);
}

.site-sidebar .brand span,
.sidebar-account-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.site-sidebar .brand strong,
.sidebar-account strong {
    overflow: hidden;
    color: var(--text);
    font-size: 0.92rem;
    letter-spacing: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-sidebar .brand small,
.sidebar-account small,
.sidebar-fair-use small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-account {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    overflow: hidden;
    padding: 9px;
    border: 1px solid rgba(226, 194, 142, 0.12);
    border-radius: 12px;
    background:
        radial-gradient(circle at 14% 24%, rgb(var(--neon-secondary-rgb) / 0.1), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
        rgba(8, 12, 26, 0.54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 12px 30px rgba(0, 0, 0, 0.18);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.sidebar-account::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.sidebar-account:hover,
.sidebar-account:focus-visible {
    border-color: rgb(var(--neon-primary-rgb) / 0.32);
    background-color: rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 0 20px rgb(var(--neon-primary-rgb) / 0.08),
        0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.sidebar-account small {
    width: fit-content;
    max-width: 100%;
    min-height: 18px;
    padding: 3px 7px;
    border: 1px solid rgba(231, 169, 95, 0.22);
    border-radius: 999px;
    background: rgba(231, 169, 95, 0.09);
    color: #dec69d;
    font-size: 0.68rem;
    font-weight: 820;
    line-height: 1;
}

.sidebar-flat-coin-wrap {
    position: relative;
}

.sidebar-flat-coin {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 58px;
    overflow: hidden;
    padding: 10px 12px;
    border: 1px solid rgba(231, 169, 95, 0.34);
    border-radius: 12px;
    background:
        radial-gradient(circle at 14% 34%, rgba(255, 232, 175, 0.18), transparent 30%),
        radial-gradient(circle at 94% 0%, rgb(var(--neon-primary-rgb) / 0.15), transparent 34%),
        linear-gradient(135deg, rgba(231, 169, 95, 0.16), rgba(74, 45, 86, 0.18)),
        rgba(8, 12, 26, 0.72);
    color: #ffe8af;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        inset 0 -20px 40px rgba(3, 5, 12, 0.12),
        0 16px 34px rgba(0, 0, 0, 0.24);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.sidebar-flat-coin::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.09) 47%, transparent 72%);
    opacity: 0.78;
}

.sidebar-flat-coin:hover,
.sidebar-flat-coin:focus-visible,
.sidebar-flat-coin.is-earning {
    border-color: rgba(231, 169, 95, 0.62);
    background-color: rgba(231, 169, 95, 0.075);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 0 24px rgba(231, 169, 95, 0.16),
        0 16px 36px rgba(0, 0, 0, 0.26);
}

.sidebar-flat-coin:hover {
    transform: translateX(2px);
}

.sidebar-flat-coin-art {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 232, 175, 0.28), transparent 56%),
        rgba(7, 10, 22, 0.62);
    box-shadow:
        inset 0 0 18px rgba(255, 232, 175, 0.1),
        0 0 24px rgba(231, 169, 95, 0.16);
}

.sidebar-flat-coin-art img {
    position: relative;
    z-index: 1;
    display: block;
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.4));
}

.sidebar-flat-coin-pulse {
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(255, 232, 175, 0.54);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.9);
}

.sidebar-flat-coin.is-earning .sidebar-flat-coin-pulse {
    animation: flatCoinLivePulse 1800ms ease-in-out infinite;
}

.sidebar-flat-coin-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.sidebar-flat-coin-label,
.sidebar-flat-coin-copy small {
    overflow: hidden;
    color: #dcc69c;
    font-size: 0.7rem;
    font-weight: 820;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-flat-coin-label {
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sidebar-flat-coin-copy strong {
    overflow: hidden;
    color: #fff2c4;
    font-size: 1.06rem;
    line-height: 1;
    text-overflow: ellipsis;
    text-shadow: 0 0 16px rgba(231, 169, 95, 0.26);
    white-space: nowrap;
}

.sidebar-flat-coin-burst {
    position: absolute;
    top: 8px;
    right: 40px;
    min-width: 34px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 232, 175, 0.42);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 238, 186, 0.24), rgba(231, 169, 95, 0.1)),
        rgba(8, 11, 23, 0.82);
    color: #fff4ce;
    font-size: 0.82rem;
    font-weight: 920;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translateY(6px) scale(0.92);
}

.sidebar-flat-coin-burst.is-visible {
    animation: flatCoinRewardBurst 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sidebar-flat-coin-help {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 24px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 232, 175, 0.5);
    border-radius: 999px;
    background:
        radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 238, 186, 0.2), rgba(231, 169, 95, 0.1)),
        rgba(8, 11, 23, 0.92);
    color: #fff4ce;
    font-size: 0.82rem;
    font-weight: 920;
    line-height: 1;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 18px rgba(0, 0, 0, 0.24);
    transition:
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.sidebar-flat-coin-help:hover,
.sidebar-flat-coin-help:focus-visible {
    border-color: rgba(255, 232, 175, 0.82);
    color: #fffbe8;
    transform: translateY(-1px) scale(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 18px rgba(231, 169, 95, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.28);
}

.sidebar-avatar {
    display: grid;
    place-items: center;
    width: 48px;
    aspect-ratio: 1;
    border: 1px solid rgb(var(--neon-primary-rgb) / 0.44);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 26%, rgb(var(--neon-secondary-rgb) / 0.78), transparent 28%),
        linear-gradient(145deg, rgb(var(--neon-primary-rgb) / 0.72), rgba(11, 18, 35, 0.96));
    color: #fff;
    font-weight: 820;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.055),
        0 0 26px rgb(var(--neon-primary-rgb) / 0.18);
}

.sidebar-avatar-image {
    display: block;
    object-fit: cover;
}

.sidebar-nav {
    display: grid;
    align-content: start;
    gap: 7px;
    flex: 1 1 auto;
    padding-top: 10px;
    border-top: 1px solid rgba(226, 194, 142, 0.11);
}

.sidebar-nav-section {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.sidebar-nav-heading {
    margin: 0;
    padding: 0 8px 0 12px;
    color: rgba(185, 196, 219, 0.58);
    font-size: 0.58rem;
    font-weight: 860;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sidebar-nav a {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    min-height: 38px;
    overflow: hidden;
    padding: 0 10px 0 12px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 720;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.sidebar-nav a > span:nth-child(2) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-nav a::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--neon-primary), var(--neon-secondary));
    box-shadow: 0 0 16px var(--neon-glow);
    opacity: 0;
    transform: scaleY(0.56);
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.is-active {
    color: var(--text);
    border-color: rgb(var(--neon-primary-rgb) / 0.4);
    background:
        radial-gradient(circle at 9% 50%, rgb(var(--neon-primary-rgb) / 0.2), transparent 43%),
        radial-gradient(circle at 92% 50%, rgb(var(--neon-secondary-rgb) / 0.13), transparent 46%),
        linear-gradient(90deg, rgb(var(--neon-primary-rgb) / 0.11), rgb(var(--neon-secondary-rgb) / 0.07)),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 18px rgb(var(--neon-primary-rgb) / 0.1);
}

.sidebar-nav a.is-active {
    color: #ffffff;
    text-shadow: 0 0 18px rgb(var(--neon-primary-rgb) / 0.28);
}

.sidebar-nav a:hover {
    transform: translateX(2px);
}

.sidebar-nav a:hover::before,
.sidebar-nav a.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

.sidebar-nav a:hover .sidebar-nav-icon,
.sidebar-nav a:focus-visible .sidebar-nav-icon {
    background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
    opacity: 1;
    filter: drop-shadow(0 0 8px var(--neon-glow));
}

.sidebar-nav-icon {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 0;
    background: currentColor;
    opacity: 0.82;
    -webkit-mask: var(--sidebar-icon, url("../icons/lucide/house.svg")) center / contain no-repeat;
    mask: var(--sidebar-icon, url("../icons/lucide/house.svg")) center / contain no-repeat;
    transition:
        background-color 160ms ease,
        filter 160ms ease,
        opacity 160ms ease;
}

.sidebar-nav-link-home {
    --sidebar-icon: url("../icons/lucide/house.svg");
}

.sidebar-nav-link-rooms {
    --sidebar-icon: url("../icons/lucide/radio.svg");
}

.sidebar-nav-link-explore {
    --sidebar-icon: url("../icons/lucide/music.svg");
}

.sidebar-nav-link-playlists {
    --sidebar-icon: url("../icons/lucide/list-music.svg");
}

.sidebar-nav-link-favorites {
    --sidebar-icon: url("../icons/lucide/heart.svg");
}

.sidebar-nav-link-profile {
    --sidebar-icon: url("../icons/lucide/settings.svg");
}

.sidebar-nav-link-admin {
    --sidebar-icon: url("../icons/lucide/layout-dashboard.svg");
}

.sidebar-nav-link-login {
    --sidebar-icon: url("../icons/lucide/log-in.svg");
}

.sidebar-nav-link-signup {
    --sidebar-icon: url("../icons/lucide/user-plus.svg");
}

.sidebar-nav-link-premium {
    --sidebar-icon: url("../icons/lucide/gem.svg");
}

.sidebar-nav a.is-active .sidebar-nav-icon {
    background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
    opacity: 1;
    filter: drop-shadow(0 0 9px var(--neon-glow));
}

.sidebar-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: 70px;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid rgb(var(--neon-primary-rgb) / 0.24);
    border-radius: 999px;
    background: var(--neon-soft);
    color: var(--text);
    font-size: 0.62rem;
    font-weight: 840;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar-neon-picker {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 7px;
    padding: 9px;
    overflow: hidden;
    border: 1px solid rgb(var(--neon-primary-rgb) / 0.28);
    border-radius: 14px;
    background:
        radial-gradient(circle at 18% 20%, rgb(var(--neon-primary-rgb) / 0.16), transparent 36%),
        radial-gradient(circle at 90% 0%, rgb(var(--neon-secondary-rgb) / 0.14), transparent 34%),
        linear-gradient(135deg, var(--neon-soft), var(--neon-secondary-soft)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 22px rgb(var(--neon-primary-rgb) / 0.08),
        0 12px 28px rgba(0, 0, 0, 0.16);
}

.sidebar-neon-picker::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-primary), var(--neon-secondary), transparent);
    box-shadow: 0 0 18px var(--neon-glow);
    opacity: 0.72;
    pointer-events: none;
}

.sidebar-neon-heading {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.sidebar-neon-label {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sidebar-neon-toggle {
    appearance: none;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid var(--neon-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        var(--neon-soft);
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 14px var(--neon-glow);
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.sidebar-neon-toggle:hover,
.sidebar-neon-toggle:focus-visible {
    background: var(--neon-secondary-soft);
    transform: translateY(-1px);
}

.sidebar-neon-swatches {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.sidebar-neon-picker:not(.is-expanded) [data-neon-extra] {
    display: none;
}

.neon-swatch {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.38), transparent 28%),
        linear-gradient(145deg, var(--swatch-primary), var(--swatch-secondary));
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.09),
        0 8px 18px rgba(0, 0, 0, 0.18);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        filter 160ms ease,
        transform 160ms ease;
}

.neon-swatch-dot {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
}

.neon-swatch:hover,
.neon-swatch:focus-visible,
.neon-swatch.is-active {
    border-color: var(--neon-line);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.08),
        0 0 0 4px rgb(var(--neon-primary-rgb) / 0.15),
        0 0 22px var(--neon-glow),
        0 0 32px rgb(var(--neon-secondary-rgb) / 0.18);
    transform: translateY(-1px);
}

.neon-swatch.is-locked {
    opacity: 0.82;
    filter: saturate(0.86);
}

.neon-swatch.is-locked::before,
.neon-swatch.is-locked::after {
    content: "";
    position: absolute;
    background: #ffffff;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.45));
}

.neon-swatch.is-locked::before {
    right: 8px;
    top: 5px;
    width: 10px;
    height: 9px;
    border: 2px solid #ffffff;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: transparent;
}

.neon-swatch.is-locked::after {
    right: 6px;
    top: 13px;
    width: 16px;
    height: 12px;
    border-radius: 3px;
}

.neon-swatch-lock {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 16px;
    padding: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(5, 8, 18, 0.72);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.34);
}

