*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

:root {
    color-scheme: dark;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    color: #f5f7ff;
    background:
        radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.18), transparent 46%),
        radial-gradient(circle at 94% 16%, rgba(255, 43, 214, 0.14), transparent 48%),
        radial-gradient(circle at 48% 120%, rgba(35, 255, 177, 0.09), transparent 55%),
        linear-gradient(180deg, #070816 0%, #020617 55%, #000 100%);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
    border-radius: 0.5rem;
}

img {
    max-width: 100%;
    display: block;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 18% 0, rgba(34, 211, 238, 0.16), transparent 58%),
        radial-gradient(circle at 100% 24%, rgba(255, 43, 214, 0.14), transparent 55%),
        radial-gradient(circle at 70% 120%, rgba(35, 255, 177, 0.08), transparent 62%);
    position: relative;
    overflow: hidden;
}

.site-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 8, 22, 0.9), rgba(6, 8, 22, 0.96)),
        radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.18), transparent 56%),
        radial-gradient(circle at 88% 28%, rgba(255, 43, 214, 0.16), transparent 54%),
        radial-gradient(circle at 50% 112%, rgba(35, 255, 177, 0.1), transparent 62%),
        repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.06) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.05) 0 1px, transparent 1px 44px),
        repeating-radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.06) 0 2px, transparent 2px 18px);
    pointer-events: none;
    z-index: 0;
}

.site-header,
.site-main,
.site-footer {
    position: relative;
    z-index: 1;
}

.tiktok-live-body {
    background: radial-gradient(circle at top left, #020617 0, #000 60%, #020617 100%);
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

.tiktok-live-page {
    height: 100vh;
    max-height: 100vh;
    padding: 1.4rem 2.1rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.22), transparent 60%);
}

.tiktok-live-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.9rem;
    gap: 1rem;
}

.tiktok-home-link,
.tiktok-orientation-toggle {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.8);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
    cursor: pointer;
}

.tiktok-home-link:hover,
.tiktok-orientation-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.9);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
}

.tiktok-live-inner {
    flex: 1;
    border-radius: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.98));
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.98);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.4rem;
    padding: 1.4rem 1.6rem 1.7rem;
    overflow: hidden;
}

.tiktok-live-left {
    display: flex;
    flex-direction: column;
}

.tiktok-live-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.tiktok-live-label {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #9ca3af;
}

.tiktok-live-title {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tiktok-live-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.tiktok-visual-frame {
    position: relative;
    width: 35%;
    max-height: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.98);
    margin: 0 auto;
    transition: aspect-ratio 0.3s ease, width 0.3s ease;
}

.tiktok-visual-frame.landscape {
    aspect-ratio: 16 / 9;
    width: 70%;
}

.tiktok-visual-frame.landscape .tiktok-center-circle {
    width: 22%;
}

.tiktok-visual-frame.landscape .tiktok-floating-number {
    left: -15%;
}

.tiktok-live-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #000;
    filter: blur(0);
}

.tiktok-live-bg-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
}

.tiktok-center-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tiktok-center-circle {
    width: 40%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(248, 250, 252, 0.85);
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.98));
    transform: scale(1);
    transition: transform 0.15s ease-out;
}

.tiktok-demo-active .tiktok-center-circle {
    animation: tiktokCenterPulse 1.8s ease-in-out infinite;
}

.tiktok-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

.tiktok-overlay-text {
    position: absolute;
    top: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
    color: #e5e7eb;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(59, 130, 246, 0.9), 0 0 24px rgba(129, 140, 248, 0.85);
    z-index: 3;
}

.tiktok-floating-number {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translate(-50%, -50%);
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 2.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #f9fafb;
    text-shadow:
        0 0 16px rgba(59, 130, 246, 0.95),
        0 0 32px rgba(129, 140, 248, 0.9),
        0 0 56px rgba(56, 189, 248, 0.85);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}

.tiktok-floating-number-active {
    animation: tiktokFloatNumber 5s ease-in-out forwards;
}

@keyframes tiktokFloatNumber {
    0% {
        left: -20%;
        opacity: 0;
        filter: blur(4px);
    }
    15% {
        opacity: 1;
        filter: blur(0);
    }
    50% {
        left: 50%;
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
        filter: blur(6px);
    }
}

.tiktok-overlay-position {
    color: #f97316;
}

.tiktok-overlay-separator {
    opacity: 0.8;
}

.tiktok-overlay-artist {
    font-weight: 600;
}

.tiktok-overlay-title {
    font-weight: 400;
    opacity: 0.92;
}

.tiktok-visual-frame .equalizer {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    padding: 0 0.9rem;
    justify-content: space-between;
}

.tiktok-live-queue-item-active .tiktok-live-queue-pos,
.tiktok-live-queue-item-active .tiktok-live-queue-track {
    color: #f9fafb;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.9);
}

@keyframes tiktokCenterPulse {
    0% {
        transform: scale(0.96);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9), 0 0 12px rgba(59, 130, 246, 0.7);
    }
    40% {
        transform: scale(1.02);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.95), 0 0 18px rgba(96, 165, 250, 0.95);
    }
    100% {
        transform: scale(0.96);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9), 0 0 12px rgba(59, 130, 246, 0.7);
    }
}

.tiktok-live-right {
    display: flex;
    flex-direction: column;
}

.tiktok-tabs {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tiktok-tabs-nav {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.tiktok-tab-button {
    flex: 1;
    padding: 0.5rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.tiktok-tab-active {
    border-color: rgba(59, 130, 246, 0.9);
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.98));
}

.tiktok-tabs-content {
    flex: 1;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.9);
    padding: 0.6rem 0.8rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.tiktok-tab-panel {
    display: none;
    height: 100%;
}

.tiktok-tab-panel-active {
    display: block;
}

.tiktok-tab-placeholder {
    font-size: 0.86rem;
    color: #cbd5f5;
    line-height: 1.6;
}

.tiktok-media-section {
    margin-bottom: 0.9rem;
}

.tiktok-media-title {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}

.tiktok-media-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.tiktok-media-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.tiktok-media-label input[type="file"] {
    font-size: 0.7rem;
}

.tiktok-media-button {
    padding: 0.26rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.9);
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.4), rgba(15, 23, 42, 0.98));
    color: #e5e7eb;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
}

.tiktok-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.tiktok-media-item {
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    padding: 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tiktok-media-thumb {
    width: 100%;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.4rem;
}

.tiktok-media-video-placeholder {
    width: 100%;
    height: 4rem;
    border-radius: 0.4rem;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), rgba(15, 23, 42, 0.98));
}

.tiktok-media-video-tag {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fde68a;
    margin-bottom: 0.15rem;
}

.tiktok-media-delete-form {
    display: flex;
    justify-content: flex-end;
}

.tiktok-media-delete-button {
    padding: 0.16rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.9);
    background: rgba(30, 64, 175, 0.7);
    color: #fee2e2;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.tiktok-select-media {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

.tiktok-select-media .tiktok-media-item {
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.tiktok-select-media:hover .tiktok-media-item {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
    border-color: rgba(96, 165, 250, 0.9);
}

.tiktok-visualizer-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tiktok-control-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tiktok-control-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e5e7eb;
    min-width: 4.5rem;
}

.tiktok-control-select {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.76rem;
    padding: 0.25rem 0.6rem;
}

.tiktok-control-input {
    flex: 1;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
    color: #e5e7eb;
    font-size: 0.76rem;
    outline: none;
}

.tiktok-control-input::placeholder {
    color: rgba(148, 163, 184, 0.7);
}

.tiktok-controls-audio {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.tiktok-controls-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.tiktok-control-button {
    flex: 1;
    padding: 0.26rem 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.9);
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.98));
    color: #e5e7eb;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.tiktok-controls-row input[type="range"] {
    flex: 1;
}

.equalizer-mode-blocks .eq-bar {
    width: 0.55rem;
    border-radius: 0.15rem;
    background-image: repeating-linear-gradient(
        to top,
        rgba(15, 23, 42, 0.1),
        rgba(15, 23, 42, 0.1) 3px,
        rgba(148, 163, 184, 0.4) 3px,
        rgba(148, 163, 184, 0.4) 5px
    );
    box-shadow: 0 0 14px rgba(148, 163, 184, 0.9);
}

.equalizer-mode-futuristic .eq-bar {
    width: 0.3rem;
    border-radius: 999px;
    background: linear-gradient(130deg, #22c55e, #0ea5e9, #a855f7);
    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.9),
        0 0 36px rgba(59, 130, 246, 0.9);
    transform: skewX(-8deg);
}

.equalizer-mode-wave .eq-bar {
    width: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #22c55e, #0ea5e9);
    box-shadow:
        0 0 14px rgba(34, 197, 94, 0.8),
        0 0 26px rgba(14, 165, 233, 0.8);
}

.equalizer-mode-dual .eq-bar {
    width: 0.26rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #e11d48, #f97316);
    box-shadow:
        0 0 18px rgba(248, 113, 113, 0.9),
        0 0 28px rgba(248, 250, 252, 0.75);
    transform-origin: center;
}

.equalizer-color-classic .eq-bar {
    background: linear-gradient(to top, #38bdf8, #a5b4fc);
}

.equalizer-color-neon .eq-bar {
    background: linear-gradient(to top, #22c55e, #eab308);
}

.equalizer-color-rainbow .eq-bar {
    background: linear-gradient(135deg, #f97316, #eab308, #22c55e, #0ea5e9, #a855f7);
}

:root {
    --eq-intensity: 100;
    --ib-bg-0: #000;
    --ib-bg-1: #020617;
    --ib-surface: rgba(10, 14, 28, 0.78);
    --ib-surface-strong: rgba(8, 10, 20, 0.9);
    --ib-border: rgba(148, 163, 184, 0.22);
    --ib-border-strong: rgba(148, 163, 184, 0.38);
    --ib-text: #f5f7ff;
    --ib-text-muted: rgba(203, 213, 245, 0.85);
    --ib-accent-cyan: #22d3ee;
    --ib-accent-magenta: #ff2bd6;
    --ib-accent-violet: #8b5cf6;
    --ib-accent-lime: #23ffb1;
    --ib-spectrum: linear-gradient(90deg, var(--ib-accent-cyan), var(--ib-accent-violet), var(--ib-accent-magenta));
    --ib-spectrum-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.85), rgba(139, 92, 246, 0.75), rgba(255, 43, 214, 0.7));
    --ib-glow-cyan: 0 0 26px rgba(34, 211, 238, 0.6);
    --ib-glow-magenta: 0 0 26px rgba(255, 43, 214, 0.52);
}

.tiktok-live-queue-title {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 0.3rem;
}

.tiktok-live-queue-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.tiktok-live-queue-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.14rem 0.3rem;
    border-radius: 0.75rem;
    background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.32), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.tiktok-live-queue-votes {
    font-size: 0.7rem;
    color: #9ca3af;
    white-space: nowrap;
    text-align: right;
    letter-spacing: 0.05em;
}

.tiktok-live-queue-item-wildcard {
    background: radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.4), rgba(15, 23, 42, 0.98));
    border-color: rgba(234, 179, 8, 0.9);
}

.tiktok-live-queue-pos {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e5e7eb;
    background: radial-gradient(circle at 30% 0, rgba(59, 130, 246, 0.6), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.tiktok-live-queue-pos-wildcard {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    background: radial-gradient(circle at 30% 0, rgba(234, 179, 8, 0.85), rgba(15, 23, 42, 0.98));
    border-color: rgba(234, 179, 8, 0.95);
}

.tiktok-live-queue-track {
    font-size: 0.75rem;
    color: #e5e7eb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tiktok-live-queue-empty {
    font-size: 0.86rem;
    color: #cbd5f5;
}

.site-header {
    padding: 1.25rem 6vw 2.5rem;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #cbd5f5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-brand {
    font-family: "Orbitron", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-email {
    font-size: 0.8rem;
    color: #e5e7eb;
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.top-email:hover {
    opacity: 1;
    color: #a5b4fc;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(34, 211, 238, 0.18), rgba(10, 14, 28, 0.85));
    color: #e5e7eb;
    border: 1px solid var(--ib-border-strong);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-link i {
    font-size: 0.8rem;
}

.social-link:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.25), 0 14px 34px rgba(255, 43, 214, 0.14);
    border-color: rgba(34, 211, 238, 0.75);
    color: #e0f2fe;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.95rem;
    gap: 2rem;
}

.logo-lockup {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-symbol {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 10%, rgba(34, 211, 238, 1), rgba(139, 92, 246, 0.9) 38%, rgba(6, 8, 22, 0.95) 100%);
    color: #070816;
    font-family: "Orbitron", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 14px 38px rgba(34, 211, 238, 0.35), 0 10px 30px rgba(255, 43, 214, 0.18);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: "Orbitron", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.logo-secondary {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.82);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.9rem;
}

.nav-groups {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.4rem;
    flex: 1;
    min-width: 0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-small {
    padding: 0.56rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.nav-cta-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-cta-toggle::after {
    content: "▾";
    font-size: 0.7rem;
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-dropdown[open] .nav-cta-toggle::after {
    content: "▴";
}

.nav-cta-toggle-active {
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding-left: 1.4rem;
    border-left: 1px solid rgba(148, 163, 184, 0.35);
}

.nav-live-block {
    display: flex;
    align-items: center;
}

.nav-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(8, 10, 20, 0.62);
    color: rgba(229, 231, 235, 0.92);
    white-space: nowrap;
}

.nav-live-pill-live {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.18);
}

.nav-live-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.95);
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.65);
}

.nav-live-pill-upcoming i {
    font-size: 0.9rem;
}

.admin-nav-label {
    font-family: "Orbitron", system-ui, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.65rem;
    color: rgba(203, 213, 245, 0.75);
    opacity: 0.9;
    user-select: none;
}

.admin-nav-link {
    opacity: 0.65;
}

.admin-nav-link:hover {
    opacity: 1;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-toggle::-webkit-details-marker {
    display: none;
}

.nav-dropdown-toggle::marker {
    content: "";
}

.nav-dropdown-toggle::before {
    content: "▾";
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.7rem;
    opacity: 0.75;
    transform: translateY(-1px);
}

.nav-dropdown[open] .nav-dropdown-toggle::before {
    content: "▴";
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    min-width: 12rem;
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: rgba(8, 10, 20, 0.92);
    border: 1px solid var(--ib-border);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 50;
}

.nav-dropdown-menu-right {
    left: auto;
    right: 0;
}

.nav-dropdown-item {
    padding: 0.35rem 0.4rem 0.35rem 0.4rem;
    border-radius: 0.75rem;
    opacity: 0.85;
    border: 1px solid transparent;
}

.nav-dropdown-item:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.18);
}

.nav-dropdown-item:focus-visible {
    outline: none;
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
}

.nav-dropdown[open] .nav-dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-link {
    position: relative;
    padding-bottom: 0.25rem;
    color: rgba(203, 213, 245, 0.88);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.18s ease, color 0.18s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 2px;
    border-radius: 999px;
    background: var(--ib-spectrum);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease-out;
}

.nav-link:hover {
    opacity: 1;
    color: #e5e7eb;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:focus-visible {
    outline: none;
    opacity: 1;
    color: #e5e7eb;
}

.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-link-active {
    color: #e5e7eb;
    opacity: 1;
}

.nav-link-active::after {
    transform: scaleX(1);
}

.banner {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 3rem;
    margin-top: 3rem;
}

.banner-content {
    max-width: 40rem;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(34, 211, 238, 0.9);
    margin-bottom: 0.85rem;
}

.banner-content h1 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: clamp(2.4rem, 3vw + 1.8rem, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.banner-subtitle {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #cbd5f5;
    max-width: 32rem;
}

.banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.banner-actions-home {
    gap: 0.75rem;
}

.btn-home-chart {
    gap: 0.65rem;
    padding: 0.8rem 1.15rem;
}

.btn-home-chart i {
    font-size: 0.95rem;
}

@media (max-width: 680px) {
    .btn-home-chart {
        width: 100%;
        justify-content: flex-start;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 0 4px rgba(56, 189, 248, 0.45), 0 0 26px rgba(56, 189, 248, 0.35);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.95), rgba(139, 92, 246, 0.88), rgba(255, 43, 214, 0.88));
    box-shadow: 0 18px 44px rgba(34, 211, 238, 0.22), 0 16px 46px rgba(255, 43, 214, 0.14);
    color: #070816;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 56px rgba(34, 211, 238, 0.28), 0 20px 56px rgba(255, 43, 214, 0.16);
}

.btn-ghost {
    background: rgba(10, 14, 28, 0.72);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.48);
}

.btn-ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 22px rgba(34, 211, 238, 0.18);
}

.btn-ghost-small {
    padding: 0.62rem 1.05rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    background: rgba(10, 14, 28, 0.72);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.48);
}

.btn-ghost-small:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 22px rgba(34, 211, 238, 0.18);
}

.banner-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.meta-item {
    padding: 0.9rem 1.1rem;
    border-radius: 0.9rem;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.12), rgba(8, 10, 20, 0.94));
    border: 1px solid rgba(148, 163, 184, 0.32);
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 0.87rem;
    color: #e5e7eb;
}

.banner-visual {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0, rgba(234, 179, 8, 0.28), transparent 55%),
        radial-gradient(circle at 10% 0, rgba(34, 211, 238, 0.45), transparent 58%),
        radial-gradient(circle at 92% 18%, rgba(255, 43, 214, 0.48), transparent 58%),
        radial-gradient(circle at 50% 120%, rgba(35, 255, 177, 0.18), rgba(2, 6, 23, 1));
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    box-shadow:
        0 22px 60px rgba(15, 23, 42, 0.95),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.banner-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.78), transparent 60%),
        radial-gradient(circle at 50% 115%, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.15) 55%, transparent 78%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 35%, rgba(0, 0, 0, 0.55));
    pointer-events: none;
    z-index: 1;
}

.banner-visual::after {
    content: "";
    position: absolute;
    inset: -10% -10%;
    background:
        conic-gradient(from 210deg,
            transparent 0 18%,
            rgba(234, 179, 8, 0.18) 18% 22%,
            transparent 22% 38%,
            rgba(255, 255, 255, 0.08) 38% 42%,
            transparent 42% 58%,
            rgba(34, 211, 238, 0.14) 58% 62%,
            transparent 62% 78%,
            rgba(255, 43, 214, 0.12) 78% 82%,
            transparent 82% 100%
        );
    opacity: 0.55;
    filter: blur(26px);
    animation: banner-spotlight 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.banner-visual > * {
    position: relative;
    z-index: 2;
}

@keyframes banner-spotlight {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: rotate(16deg) scale(1.03);
        opacity: 0.62;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.45;
    }
}

.banner-nowplaying {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.65rem 0.35rem 0.25rem;
    z-index: 3;
}

.pulse-circle {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.9));
}

.pulse-circle-outer {
    width: 14rem;
    height: 14rem;
    animation: pulseOuter 3.4s ease-out infinite;
}

.pulse-circle-inner {
    width: 9rem;
    height: 9rem;
    animation: pulseInner 3.4s ease-out infinite;
}

.equalizer {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    z-index: 2;
}

.eq-bar {
    width: 0.35rem;
    height: 3.6rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(35, 255, 177, 0.95), rgba(34, 211, 238, 0.95), rgba(255, 43, 214, 0.9));
    box-shadow: 0 0 26px rgba(34, 211, 238, 0.55), 0 0 26px rgba(255, 43, 214, 0.32);
    animation: equalize 1.2s ease-in-out infinite;
    animation-direction: alternate;
}

.equalizer-audio-active .eq-bar {
    animation: none;
}

.eq-bar-1 {
    height: 3.3rem;
    animation-delay: 0s;
}

.eq-bar-2 {
    height: 4rem;
    animation-delay: 0.15s;
}

.eq-bar-3 {
    height: 5rem;
    animation-delay: 0.3s;
}

.eq-bar-4 {
    height: 3.8rem;
    animation-delay: 0.45s;
}

.eq-bar-5 {
    height: 4.6rem;
    animation-delay: 0.6s;
}

.banner-badge {
    position: relative;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 0.45rem 0.9rem 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    max-width: 260px;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    backdrop-filter: blur(16px);
}

.banner-som {
    width: min(980px, 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(234, 179, 8, 0.22);
    background:
        radial-gradient(circle at 12% 0, rgba(234, 179, 8, 0.18), transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(34, 211, 238, 0.16), transparent 55%),
        radial-gradient(circle at 50% 140%, rgba(255, 43, 214, 0.12), rgba(15, 23, 42, 0.9));
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 36px rgba(234, 179, 8, 0.14),
        0 0 26px rgba(56, 189, 248, 0.12);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    padding: 1.25rem 1.35rem 1.45rem;
}

.banner-som {
    transform: translateZ(0);
}

.banner-som::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        conic-gradient(from 220deg,
            rgba(234, 179, 8, 0.22),
            rgba(34, 211, 238, 0.18),
            rgba(139, 92, 246, 0.18),
            rgba(255, 43, 214, 0.18),
            rgba(234, 179, 8, 0.22)
        );
    opacity: 0.62;
    filter: blur(20px);
    pointer-events: none;
}

.banner-som::before {
    animation: som-aurora 8.5s ease-in-out infinite, som-neon 6.5s linear infinite;
    transform-origin: 50% 50%;
}

.banner-som::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 42%, rgba(255, 255, 255, 0.06), transparent 35%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.05), transparent 40%),
        repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.06) 0 1px, transparent 1px 60px),
        repeating-linear-gradient(0deg, rgba(148, 163, 184, 0.045) 0 1px, transparent 1px 18px);
    opacity: 0.8;
    pointer-events: none;
}

.banner-som::after {
    mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 78%);
}

.banner-som-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 249, 255, 0.9);
    text-align: center;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
}

.banner-som-presented {
    display: block;
    text-align: center;
    margin-top: -0.45rem;
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(234, 179, 8, 0.9);
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.18);
    position: relative;
    z-index: 1;
}

.banner-som-presented::before,
.banner-som-presented::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.8), transparent);
    vertical-align: middle;
    margin: 0 0.6rem;
    opacity: 0.9;
}

.banner-som-label i {
    margin-right: 0.45rem;
    color: rgba(234, 179, 8, 0.95);
    text-shadow: 0 0 18px rgba(234, 179, 8, 0.28);
}

.banner-som-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    position: relative;
    z-index: 1;
}

.banner-som-grid-single {
    grid-template-columns: minmax(0, 1fr);
}

.banner-som-item {
    border-radius: 1.05rem;
    border: 1px solid transparent;
    padding: 0.95rem 0.95rem 1rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 55%),
        radial-gradient(circle at 100% 0, rgba(34, 211, 238, 0.08), transparent 52%),
        radial-gradient(circle at 50% 140%, rgba(234, 179, 8, 0.08), rgba(8, 10, 20, 0.72));
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    position: relative;
    overflow: hidden;
}

.banner-som-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background:
        conic-gradient(from 180deg,
            rgba(34, 211, 238, 0.95),
            rgba(255, 43, 214, 0.9),
            rgba(35, 255, 177, 0.92),
            rgba(234, 179, 8, 0.95),
            rgba(34, 211, 238, 0.95)
        );
    opacity: 0.7;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.22)) drop-shadow(0 0 10px rgba(255, 43, 214, 0.16));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: som-border-spin 4.8s linear infinite, som-border-hue 7.2s linear infinite;
    pointer-events: none;
}

.banner-som-item::after {
    content: "";
    position: absolute;
    inset: -40% -60%;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.18) 40%, transparent 60%);
    transform: translateX(-30%) rotate(12deg);
    opacity: 0.0;
    pointer-events: none;
}

.banner-som-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.55), 0 0 26px rgba(234, 179, 8, 0.14);
}

.banner-som-item:hover::before {
    opacity: 0.95;
}

.banner-som-item:hover::after {
    opacity: 0.9;
    animation: som-sheen 1.25s ease-in-out;
}

.banner-som-winner {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(10, 14, 28, 0.95);
    background: linear-gradient(135deg, rgba(234, 179, 8, 1), rgba(255, 228, 133, 0.92), rgba(234, 179, 8, 0.95));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 22px rgba(234, 179, 8, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
    z-index: 1;
}

.banner-som-winner i {
    color: rgba(10, 14, 28, 0.95);
}

.banner-som-type {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.75);
    position: relative;
    z-index: 1;
}

.banner-som-track {
    font-size: 1rem;
    line-height: 1.35;
    color: #e5e7eb;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 1;
}

@keyframes som-neon {
    0% {
        filter: blur(20px) hue-rotate(0deg);
    }
    100% {
        filter: blur(20px) hue-rotate(360deg);
    }
}

@keyframes som-border-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes som-border-hue {
    0% {
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.22)) drop-shadow(0 0 10px rgba(255, 43, 214, 0.16)) hue-rotate(0deg);
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.22)) drop-shadow(0 0 10px rgba(255, 43, 214, 0.16)) hue-rotate(360deg);
    }
}

@keyframes som-sheen {
    0% {
        transform: translateX(-30%) rotate(12deg);
        opacity: 0;
    }
    15% {
        opacity: 0.75;
    }
    100% {
        transform: translateX(55%) rotate(12deg);
        opacity: 0;
    }
}

@keyframes som-aurora {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.42;
    }
    50% {
        transform: rotate(26deg) scale(1.06);
        opacity: 0.7;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.42;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .banner-som::before,
    .banner-visual::after,
    .pulse-circle,
    .pulse-bar,
    .tiktok-floating-number {
        animation: none !important;
    }
}

.banner-som-item-top15 {
    border-color: rgba(34, 211, 238, 0.22);
}

.banner-som-item-top10 {
    border-color: rgba(244, 114, 182, 0.22);
}

.banner-som-item-covers {
    border-color: rgba(35, 255, 177, 0.22);
}

@media (max-width: 720px) {
    .banner-som-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.top15-demo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.9rem;
    margin-bottom: 1.2rem;
    border-radius: 0.75rem;
    background: radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.2), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(234, 179, 8, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fefce8;
}

.top15-demo-banner-off {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
}

.top15-demo-label {
    opacity: 0.9;
}

.top15-demo-toggle-link {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    text-decoration: none;
}

.top15-demo-toggle-link:hover {
    border-color: rgba(96, 165, 250, 0.9);
    background: rgba(15, 23, 42, 0.9);
}

.top15-week-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.top15-week-link {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    text-decoration: none;
    opacity: 0.9;
}

.top15-week-link:hover {
    opacity: 1;
    color: #bfdbfe;
}

.top15-week-link-disabled {
    opacity: 0.5;
    cursor: default;
}

.badge-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.badge-track {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #e5e7eb;
}

.banner-audio {
    display: none;
}

.banner-audio-toggle {
    margin-top: 0.65rem;
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(8, 10, 20, 0.72);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 22px rgba(234, 179, 8, 0.16);
}

.banner-audio-toggle:hover {
    border-color: rgba(234, 179, 8, 0.8);
    box-shadow: 0 0 26px rgba(234, 179, 8, 0.22), 0 0 22px rgba(56, 189, 248, 0.12);
}

.site-main {
    padding: 0 6vw 3rem;
}

.home-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.75);
    margin-bottom: 0.6rem;
}

.home-overview {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.awards-section {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.awards-section .home-section-header {
    margin-bottom: 1.25rem;
}

.home-overview-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    border-radius: 1.5rem;
    padding: 2.2rem 2.2rem;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.12), rgba(8, 10, 20, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.home-overview-inner::after {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.12), transparent 55%),
        radial-gradient(circle at 90% 20%, rgba(255, 43, 214, 0.1), transparent 60%),
        repeating-radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.06) 0 2px, transparent 2px 18px);
    pointer-events: none;
    opacity: 0.85;
}

.home-overview-copy,
.home-overview-pulse {
    position: relative;
    z-index: 1;
}

.home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.home-overview-pulse {
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem;
    background: rgba(8, 10, 20, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.22);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    justify-content: center;
    min-height: 14rem;
}

.pulse-chip {
    height: 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.pulse-chip-cyan {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.1), rgba(34, 211, 238, 0.75), rgba(34, 211, 238, 0.1));
}

.pulse-chip-magenta {
    background: linear-gradient(90deg, rgba(255, 43, 214, 0.1), rgba(255, 43, 214, 0.72), rgba(255, 43, 214, 0.1));
}

.pulse-chip-lime {
    background: linear-gradient(90deg, rgba(35, 255, 177, 0.1), rgba(35, 255, 177, 0.7), rgba(35, 255, 177, 0.1));
}

.pulse-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.45rem;
    height: 5.4rem;
}

.pulse-bar {
    width: 0.45rem;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(35, 255, 177, 0.95), rgba(34, 211, 238, 0.92), rgba(255, 43, 214, 0.88));
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.22), 0 0 18px rgba(255, 43, 214, 0.12);
    transform-origin: bottom;
    animation: equalize 1.2s ease-in-out infinite alternate;
}

.pulse-bar:nth-child(1) { animation-delay: 0s; }
.pulse-bar:nth-child(2) { animation-delay: 0.12s; }
.pulse-bar:nth-child(3) { animation-delay: 0.24s; }
.pulse-bar:nth-child(4) { animation-delay: 0.36s; }
.pulse-bar:nth-child(5) { animation-delay: 0.48s; }
.pulse-bar:nth-child(6) { animation-delay: 0.6s; }
.pulse-bar:nth-child(7) { animation-delay: 0.72s; }

.chart-picker {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.home-section-header {
    margin-bottom: 1.25rem;
}

.chart-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.chart-card {
    border-radius: 1.4rem;
    padding: 1.7rem 1.7rem 1.6rem;
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.14), rgba(8, 10, 20, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.chart-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 45%, rgba(255, 43, 214, 0.06));
    pointer-events: none;
    opacity: 0.7;
}

.chart-card-top15 {
    border-color: rgba(34, 211, 238, 0.22);
}

.chart-card-top10 {
    border-color: rgba(255, 43, 214, 0.2);
}

.chart-card-top {
    display: flex;
    gap: 0.95rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.chart-card-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 20, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    font-size: 1.2rem;
    color: #e5e7eb;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
}

.chart-card-top15 .chart-card-icon {
    border-color: rgba(34, 211, 238, 0.22);
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
}

.chart-card-top10 .chart-card-icon {
    border-color: rgba(255, 43, 214, 0.18);
    box-shadow: 0 0 22px rgba(255, 43, 214, 0.14);
}

.chart-card-title {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.chart-card-tagline {
    margin-top: 0.25rem;
    font-size: 0.86rem;
    color: rgba(203, 213, 245, 0.82);
}

.chart-rule-list {
    margin-top: 1.25rem;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.chart-rule-list li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    color: rgba(203, 213, 245, 0.85);
    line-height: 1.55;
}

.rule-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    background: rgba(8, 10, 20, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
    white-space: nowrap;
}

.chart-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.35rem;
    position: relative;
    z-index: 1;
}

.home-callouts {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.home-callouts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.callout-card {
    border-radius: 1.3rem;
    padding: 1.55rem 1.55rem 1.45rem;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.1), rgba(8, 10, 20, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
    overflow: hidden;
}

.callout-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 45%, rgba(255, 43, 214, 0.06));
    pointer-events: none;
    opacity: 0.65;
}

.callout-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.42), 0 0 26px rgba(34, 211, 238, 0.14);
}

.callout-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 10, 20, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #e5e7eb;
    font-size: 1.2rem;
    box-shadow: 0 0 22px rgba(34, 211, 238, 0.14);
    position: relative;
    z-index: 1;
}

.callout-title {
    margin-top: 1rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.callout-text {
    margin-top: 0.65rem;
    color: rgba(203, 213, 245, 0.82);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.callout-link {
    margin-top: 1.05rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(34, 211, 238, 0.9);
    position: relative;
    z-index: 1;
}

.vote-guide {
    margin-top: 2.2rem;
    margin-bottom: 2.2rem;
}

.vote-guide-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: stretch;
    border-radius: 1.4rem;
    padding: 2rem 2.1rem;
    background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.14), rgba(8, 10, 20, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.26);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.vote-guide-inner::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 30% 0, rgba(34, 211, 238, 0.12), transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 43, 214, 0.1), transparent 52%),
        repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.06) 0 1px, transparent 1px 56px);
    pointer-events: none;
    opacity: 0.75;
}

.vote-guide-copy,
.vote-steps {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: clamp(1.2rem, 0.9vw + 1rem, 1.75rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: rgba(203, 213, 245, 0.85);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 40rem;
}

.vote-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.vote-steps {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.vote-step {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    background: rgba(8, 10, 20, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.vote-step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, rgba(34, 211, 238, 0.22), rgba(8, 10, 20, 0.92));
    border: 1px solid rgba(34, 211, 238, 0.25);
    color: #e5e7eb;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.18);
}

.vote-step-title {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.vote-step-text {
    font-size: 0.88rem;
    color: rgba(203, 213, 245, 0.8);
    margin-top: 0.15rem;
}

.intro-section {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.admin-section {
    margin-top: 2.5rem;
}

.admin-wrapper {
    margin-top: 0.5rem;
    border-radius: 1.4rem;
    padding: 1.6rem 1.8rem 1.9rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.98);
}

.admin-header {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.6rem;
    margin-bottom: 1.7rem;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.35rem;
}

.admin-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(8, 10, 20, 0.55);
    color: rgba(229, 231, 235, 0.88);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.admin-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.72);
}

.admin-tab-active {
    border-color: rgba(34, 211, 238, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.admin-title-block h2 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.admin-title-block p {
    font-size: 0.88rem;
    color: #cbd5f5;
    max-width: 28rem;
}

.admin-login-panel {
    border-radius: 1.1rem;
    padding: 1.2rem 1.3rem 1.3rem;
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), rgba(8, 10, 20, 0.98));
    border: 1px solid rgba(34, 211, 238, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
}

.admin-login-panel-centered {
    max-width: 500px;
    margin: 0 auto;
}

.admin-login-panel h3 {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.admin-field label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cbd5f5;
}

.admin-field input,
.admin-field select {
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.52);
    background: rgba(8, 10, 20, 0.92);
    color: #e5e7eb;
    padding: 0.45rem 0.6rem;
    font-size: 0.85rem;
    outline: none;
}

.admin-field select {
    cursor: pointer;
}

.admin-field select option {
    background: rgba(8, 10, 20, 0.98);
    color: #e5e7eb;
}

.tiktok-demo-label {
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.tiktok-demo-toggle-link {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    text-decoration: none;
}

.tiktok-demo-toggle-link:hover {
    border-color: rgba(96, 165, 250, 0.9);
    background: rgba(15, 23, 42, 0.9);
}

.admin-field input:focus,
.admin-field select:focus {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 0 0 1px rgba(8, 10, 20, 1), 0 0 18px rgba(34, 211, 238, 0.38), 0 0 16px rgba(255, 43, 214, 0.18);
}

.admin-login-note {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.admin-login-error {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: #fecaca;
}

.admin-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.admin-label-soft {
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: 0.86rem;
    color: rgba(229, 231, 235, 0.92);
}

.admin-users-block {
    margin-top: 1.6rem;
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.32), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.admin-users-header h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.96rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.admin-users-header p {
    font-size: 0.82rem;
    color: #cbd5f5;
    max-width: 26rem;
}

.admin-users-form-wrapper {
    max-width: 26rem;
}

.admin-users-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 1.3rem;
    margin-top: 0.3rem;
}

.admin-users-column {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.admin-users-column-table {
    align-self: stretch;
}

.admin-users-form-card {
    border-radius: 0.9rem;
    padding: 0.9rem 0.95rem 1rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.88);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.95);
}

.admin-users-form-wrapper-secondary .admin-users-form-card {
    border-color: rgba(56, 189, 248, 0.9);
}

.admin-users-form-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.admin-users-form-label span:first-child {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.admin-users-form-label span:last-child {
    font-size: 0.78rem;
    color: #cbd5f5;
}

.admin-users-table-container {
    height: 100%;
}

.artists-section {
    margin-top: 2.5rem;
}

.artists-wrapper {
    margin-top: 0.5rem;
    border-radius: 1.4rem;
    padding: 1.6rem 1.8rem 1.9rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.98);
}

.artists-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 1.6rem;
}

.artists-public-header h2 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.artists-public-header p {
    font-size: 0.88rem;
    color: #cbd5f5;
    max-width: 26rem;
}

.artists-list {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.artist-card-link {
    text-decoration: none;
}

.artist-card {
    border-radius: 1.1rem;
    padding: 0.75rem 0.9rem;
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.98);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.artist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 1);
    border-color: rgba(129, 140, 248, 0.95);
}

.artist-card-avatar {
    width: 75px;
    height: 75px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.5), rgba(15, 23, 42, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1rem;
}

.artist-card-placeholder-large {
    width: 75px;
    height: 75px;
}

.artist-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.artist-card-name {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tiktok-save-status {
    min-width: 4.5rem;
    font-size: 0.7rem;
    color: #9ca3af;
}

.artist-card-bio {
    font-size: 0.78rem;
    color: #cbd5f5;
}

.artists-empty {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: #cbd5f5;
}

.artists-panel {
    border-radius: 1.1rem;
    padding: 0.9rem 1.1rem 1.1rem;
    background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.38), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(129, 140, 248, 0.95);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.artists-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.artists-panel-header-main h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.artists-panel-header-main p {
    font-size: 0.8rem;
    color: #e5e7eb;
}

.artists-panel-toggle {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    background: radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.5), rgba(15, 23, 42, 0.98));
    color: #e5e7eb;
    padding: 0.2rem 0.8rem;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.artists-panel.artists-panel-collapsed .artists-panel-body {
    display: none;
}

.artists-auth-toggle {
    font-size: 0.8rem;
    color: #cbd5f5;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.artists-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.artists-auth-card {
    border-radius: 0.9rem;
    padding: 0.7rem 0.8rem 0.8rem;
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.42), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.95);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.98);
}

.artists-auth-card h4 {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.artists-auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artists-auth-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0.9rem;
    border-radius: 0.8rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.8rem;
}

.artists-disclaimer {
    margin-top: 0.4rem;
    padding: 0.5rem 0.6rem;
    border-radius: 0.7rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-height: 8.5rem;
    overflow-y: auto;
}

.artists-disclaimer-body p {
    font-size: 0.72rem;
    color: #cbd5f5;
}

.artists-disclaimer-check {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #e5e7eb;
}

.artists-disclaimer-check input[type="checkbox"] {
    margin-top: 0.15rem;
}

.artists-profile-card {
    border-radius: 0.9rem;
    padding: 0.9rem 1rem 1rem;
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.4), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(129, 140, 248, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
}

.artists-profile-header h4 {
    font-size: 0.86rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.artists-profile-header p {
    font-size: 0.8rem;
    color: #cbd5f5;
}

.artists-vote-total {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(8, 10, 20, 0.6);
    color: rgba(229, 231, 235, 0.92);
    font-size: 0.78rem;
}

.artists-vote-total span {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(156, 163, 175, 0.95);
    font-size: 0.66rem;
}

.artists-vote-total strong {
    font-family: "Orbitron", system-ui, sans-serif;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.artists-profile-form {
    margin-top: 0.7rem;
}

.artists-profile-form-spaced {
    margin-top: 0.9rem;
}

.artists-profile-card-spaced {
    margin-top: 1.5rem;
}

.artists-profile-form .admin-users-btn {
    margin-top: 0.75rem;
}

.artists-switch-confirm {
    margin-top: 0.5rem;
    font-size: 0.78rem;
}

.artists-entry-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 0.55rem;
}

.artists-entry-type-option {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: #e5e7eb;
}

.artists-entry-type-option input {
    transform: translateY(1px);
}

.artists-rule-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.9em;
}

.artists-entrant-grid {
    margin-top: 1.05rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.artists-entrant-card {
    border-radius: 1rem;
    padding: 1.05rem 1.05rem 1.1rem;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.artists-entrant-card-top15 {
    border-color: rgba(34, 211, 238, 0.35);
}

.artists-entrant-card-top10 {
    border-color: rgba(244, 114, 182, 0.35);
}

.artists-entrant-card-covers {
    border-color: rgba(35, 255, 177, 0.35);
}

.artists-entrant-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.artists-entrant-card-title {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.artists-entrant-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.92);
    background: rgba(8, 10, 20, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.artists-entrant-track {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(229, 231, 235, 0.98);
    line-height: 1.35;
}

.artists-entrant-sub {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.95);
}

.artists-entrant-meta {
    margin: 0.65rem 0 0.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
}

.artists-entrant-field label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.78);
    margin-bottom: 0.25rem;
}

.artists-entrant-field input {
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(8, 10, 20, 0.65);
    color: rgba(229, 231, 235, 0.95);
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
    outline: none;
}

.artists-entrant-field input:focus {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 18px rgba(56, 189, 248, 0.45);
}

.artists-entrant-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.artists-entrant-links span {
    color: rgba(203, 213, 245, 0.8);
    font-size: 0.85em;
    letter-spacing: 0.06em;
}

.artists-upload-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}

.artists-upload-type {
    grid-column: 1 / -1;
}

@media (max-width: 920px) {
    .artists-entrant-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .artists-upload-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.artists-entrant-summary {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.artists-entrant-media {
    margin: 0.75rem 0;
}

.artists-entrant-links {
    margin: 0.55rem 0;
    opacity: 0.76;
    font-size: 0.9em;
    word-break: break-word;
}

.artists-entrant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-top: 0.9rem;
}

.artists-switch-panel {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.artists-entrant-placeholder-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
}

.artists-entrant-placeholder-img-large {
    max-width: 260px;
}

.artists-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
}

.artists-profile-avatar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.artists-profile-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 0.9rem;
}

.artists-profile-fields textarea {
    border-radius: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    padding: 0.45rem 0.6rem;
    font-size: 0.85rem;
    outline: none;
}

.artists-profile-fields textarea:focus {
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 18px rgba(56, 189, 248, 0.65);
}

.artists-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    margin-left: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    font-size: 0.72rem;
    line-height: 1;
    cursor: help;
}

.artists-disclaimer-toggle {
    margin-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.artists-eligibility-banner {
    margin-top: 0.9rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(56, 189, 248, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.artists-eligibility-top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.25rem;
}

.artists-eligibility-label {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.92);
}

.artists-eligibility-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(8, 10, 20, 0.65);
}

.artists-eligibility-badge-on {
    border-color: rgba(34, 211, 238, 0.5);
    color: rgba(34, 211, 238, 0.95);
}

.artists-eligibility-badge-off {
    border-color: rgba(244, 114, 182, 0.55);
    color: rgba(244, 114, 182, 0.95);
}

.artists-eligibility-desc {
    font-size: 0.84rem;
    color: rgba(229, 231, 235, 0.92);
    line-height: 1.4;
}

.artists-eligibility-details {
    margin-top: 0.55rem;
}

.artists-eligibility-summary {
    cursor: pointer;
    font-size: 0.78rem;
    color: rgba(203, 213, 245, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.artists-eligibility-body {
    margin-top: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.85rem;
    background: rgba(8, 10, 20, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.artists-eligibility-body p {
    font-size: 0.78rem;
    color: rgba(203, 213, 245, 0.9);
}

.artists-eligibility-action {
    flex: 0 0 auto;
}

.artists-rule-callout {
    border-radius: 0.9rem;
    padding: 0.75rem 0.9rem;
    background: rgba(8, 10, 20, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.artists-disclaimer-status span:first-child {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.artists-disclaimer-status span:last-child {
    display: block;
    font-size: 0.78rem;
    color: #cbd5f5;
}

.artists-detail {
    margin-top: 2rem;
}

.artists-detail-card {
    border-radius: 1.1rem;
    padding: 1rem 1.2rem 1.1rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.32), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.9);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.98);
}

.artists-detail-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.8rem;
}

.artists-detail-avatar {
    width: 75px;
    height: 75px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.5), rgba(15, 23, 42, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
}

.artists-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artists-detail-meta h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.artists-detail-meta p {
    font-size: 0.8rem;
    color: #e5e7eb;
}

.artist-profile-hero {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.artist-profile-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-width: 0;
}

.artist-profile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.artist-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.artist-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.artist-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(8, 10, 20, 0.72);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(56, 189, 248, 0.95);
}

.artist-genre-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.85);
    font-size: 0.72rem;
    color: rgba(203, 213, 245, 0.9);
}

.artist-profile-bio {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(229, 231, 235, 0.92);
}

.artist-profile-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artist-section {
    border-radius: 1rem;
    padding: 0.95rem 1rem 1.05rem;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.artist-section-header h4 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.artist-section-header p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(203, 213, 245, 0.8);
}

.artist-section-empty {
    margin-top: 0.75rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.9rem;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    background: rgba(8, 10, 20, 0.55);
    color: rgba(203, 213, 245, 0.78);
    font-size: 0.85rem;
}

.artist-track-list {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.artist-track-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.75rem 0.8rem;
    border-radius: 0.95rem;
    background: rgba(8, 10, 20, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.artist-track-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.artist-track-type {
    align-self: flex-start;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.85);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.9);
}

.artist-track-title {
    font-weight: 600;
    color: rgba(229, 231, 235, 0.98);
    line-height: 1.35;
}

.artist-track-date {
    font-size: 0.78rem;
    color: rgba(203, 213, 245, 0.72);
}

.artist-track-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.artist-history-grid {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.artist-history-card {
    border-radius: 0.95rem;
    padding: 0.85rem 0.85rem 0.95rem;
    background: rgba(8, 10, 20, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.artist-history-card-top15 {
    border-color: rgba(34, 211, 238, 0.26);
}

.artist-history-card-top10 {
    border-color: rgba(244, 114, 182, 0.26);
}

.artist-history-card-covers {
    border-color: rgba(35, 255, 177, 0.26);
}

.artist-history-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.artist-history-card-header h5 {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.96);
}

.artist-history-stats {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.76rem;
    color: rgba(203, 213, 245, 0.78);
    text-align: right;
    white-space: nowrap;
}

.artist-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.artist-history-table th,
.artist-history-table td {
    padding: 0.45rem 0.35rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.artist-history-table th {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(156, 163, 175, 0.95);
    text-align: left;
}

.artist-history-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.artist-follow-btn.is-following {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 22px rgba(34, 197, 94, 0.18);
}

@media (max-width: 1040px) {
    .artist-profile-top {
        flex-direction: column;
    }

    .artist-profile-actions {
        justify-content: flex-start;
    }

    .artist-history-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.artist-profile-hero .artists-detail-avatar {
    flex-shrink: 0;
}

.artists-detail-links {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artists-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.85);
}

.artists-link-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
}

.artists-link-label i {
    font-size: 0.85rem;
}

.artists-link-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
}

.artists-link-url {
    max-width: 18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artists-link-copy {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.9);
    background: radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.4), rgba(15, 23, 42, 0.98));
    color: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1040px) {
    .artists-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .artists-profile-fields {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .artists-wrapper {
        padding: 1.2rem 1.1rem 1.4rem;
    }

    .artists-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .artists-auth-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.admin-stats-controls {
    margin-top: 1.1rem;
    padding: 0.9rem 1rem;
    border-radius: 1.1rem;
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.25), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.75);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-stats-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.admin-stats-label span:first-child {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9ca3af;
}

.admin-stats-label span:last-child {
    font-size: 0.8rem;
    color: #cbd5f5;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.admin-stats-card {
    border-radius: 0.9rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(148, 163, 184, 0.75);
    background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.28), rgba(15, 23, 42, 0.98));
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
    position: relative;
    overflow: hidden;
}

.admin-stats-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    opacity: 0;
    background: conic-gradient(from 180deg, rgba(34, 211, 238, 0.3), rgba(236, 72, 153, 0.3), rgba(249, 115, 22, 0.3), rgba(34, 211, 238, 0.3));
    transform: translate3d(-30%, -30%, 0);
    transition: opacity 0.25s ease-out;
}

.admin-stats-card-primary {
    border-color: rgba(56, 189, 248, 0.85);
}

.admin-stats-card-accent {
    border-color: rgba(129, 140, 248, 0.9);
}

.admin-stats-card-soft {
    border-color: rgba(96, 165, 250, 0.8);
}

.admin-stats-card-danger {
    border-color: rgba(248, 113, 113, 0.9);
}

.admin-stats-card:hover::before {
    opacity: 1;
}

.admin-stats-button {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    color: #e5e7eb;
    cursor: pointer;
    padding: 0;
}

.admin-stats-title {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-stats-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
}

.admin-users-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.94);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.9);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.95);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
}

.admin-entrants-block {
    margin-top: 1.4rem;
}

.admin-entrants-block-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.admin-entrants-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.4rem;
    margin-bottom: 1rem;
}

.admin-quick-actions {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-table-title {
    margin: 0;
    padding: 0.9rem 0.95rem 0.65rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.95);
    border-bottom: 1px solid rgba(30, 64, 175, 0.6);
    background: rgba(15, 23, 42, 0.98);
}

.admin-table-container-spaced {
    margin-top: 1.25rem;
}

.admin-entrants-info h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.admin-entrants-info p {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.admin-entrants-week {
    text-align: right;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.admin-entrants-week span:first-child {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.admin-table-container {
    margin-top: 0.4rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.98);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.admin-table thead {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), rgba(236, 72, 153, 0.12));
}

.admin-table th,
.admin-table td {
    padding: 0.6rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid rgba(30, 64, 175, 0.6);
}

.admin-table th {
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #9ca3af;
}

.admin-table td {
    color: #e5e7eb;
}

.admin-table tbody tr:nth-child(2n) {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.25));
}

.admin-table tbody tr:nth-child(2n + 1) {
    background: rgba(15, 23, 42, 0.95);
}

.admin-table tbody tr:first-child td {
    border-top: 1px solid rgba(37, 99, 235, 0.7);
}

.admin-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
}

.admin-table td:first-child {
    font-weight: 600;
    text-align: center;
}

.admin-table td:nth-child(4),
.admin-table td:nth-child(5),
.admin-table td:nth-child(6),
.admin-table td:nth-child(7),
.admin-table td:nth-child(8),
.admin-table td:nth-child(9),
.admin-table td:nth-child(10) {
    text-align: center;
}

.admin-table-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-table-actions form {
    margin: 0 0.15rem;
}

.admin-streams-input {
    width: 5.5rem;
    margin-right: 0.4rem;
    padding: 0.25rem 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.75rem;
}

.btn-icon {
    padding: 0.4rem;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.btn-icon-danger {
    border-color: rgba(248, 113, 113, 0.9);
    color: #fecaca;
}

.btn-icon-danger:hover {
    border-color: rgba(248, 113, 113, 1);
    background: radial-gradient(circle at 30% 0, rgba(248, 113, 113, 0.4), rgba(15, 23, 42, 0.98));
    box-shadow: 0 18px 36px rgba(248, 113, 113, 0.4);
}

.team-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.team-header {
    margin-bottom: 1.8rem;
}

.team-header-text h2 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.team-header-text p {
    max-width: 30rem;
    font-size: 0.9rem;
    color: #cbd5f5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.team-card {
    border-radius: 1.3rem;
    padding: 1.3rem 1.2rem 1.2rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.28), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.75);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.team-logo {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.5), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(129, 140, 248, 0.9);
    color: #e5e7eb;
    font-weight: 600;
    font-size: 0.9rem;
}

.team-name {
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-role {
    font-size: 0.8rem;
    color: #9ca3af;
}

.team-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.team-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    padding: 0.4rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.team-link i {
    font-size: 0.9rem;
}

.team-link:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.95);
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.35), rgba(15, 23, 42, 0.98));
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.98);
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.top15-candidates {
    margin-top: 2.2rem;
    margin-bottom: 0.4rem;
}

.top15-candidates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.top15-candidates-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.top15-candidates-info h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.top15-candidates-info p {
    font-size: 0.85rem;
    color: #cbd5f5;
}

.top15-candidates-note {
    text-align: right;
    font-size: 0.78rem;
    color: #e5e7eb;
}

.top15-candidates-note span:first-child {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.top15-candidates-note span:last-child {
    display: block;
    margin-top: 0.15rem;
}

.top15-deadline {
    text-align: right;
    font-size: 0.78rem;
    color: #e5e7eb;
}

.top15-deadline span:first-child {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.top15-deadline span:last-child {
    display: block;
    margin-top: 0.15rem;
}

.top15-candidates-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.top15-candidate-card {
    border-radius: 1.1rem;
    padding: 1.1rem 1.2rem 1rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.24), rgba(15, 23, 42, 0.97));
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.top15-candidate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 42%, rgba(255, 43, 214, 0.06));
    opacity: 0.7;
    pointer-events: none;
}

.top15-candidate-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.75);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.98), 0 0 24px rgba(34, 211, 238, 0.14);
}

.top15-candidate-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top15-candidate-title {
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.top15-candidate-embed {
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.7);
    position: relative;
    z-index: 1;
}

.top15-candidate-embed iframe {
    width: 100%;
    height: 152px;
    border: none;
    display: block;
}

.top15-candidate-embed img {
    width: 100%;
    height: auto;
    display: block;
}

.top15-candidate-embed-youtube iframe {
    height: auto;
    aspect-ratio: 16 / 9;
}

.top15-vote-form {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.top15-vote-btn {
    margin-top: 0.3rem;
    align-self: flex-end;
    padding-inline: 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.9);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(15, 23, 42, 0.98) 55%, rgba(255, 43, 214, 0.12));
    color: #e5e7eb;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 1), 0 0 22px rgba(56, 189, 248, 0.38), 0 0 22px rgba(255, 43, 214, 0.14);
    position: relative;
    z-index: 1;
}

.top15-vote-btn:hover {
    border-color: rgba(236, 72, 153, 0.95);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(15, 23, 42, 0.98) 52%, rgba(255, 43, 214, 0.2));
    box-shadow: 0 0 34px rgba(56, 189, 248, 0.5), 0 0 30px rgba(255, 43, 214, 0.22);
}

.top15-vote-btn:disabled,
.top15-vote-btn[disabled] {
    border-color: rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.92);
    color: rgba(203, 213, 245, 0.72);
    text-shadow: none;
}

.top15-vote-message {
    margin: 0.85rem 0 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(56, 189, 248, 0.55);
    color: #e5e7eb;
    font-size: 0.86rem;
    line-height: 1.6;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.98);
}

.top15-vote-message.top15-vote-error {
    background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.12), rgba(15, 23, 42, 0.96));
    border-color: rgba(248, 113, 113, 0.6);
    color: #fecaca;
}

.top15-no-entrants {
    grid-column: 1 / -1;
    margin: 0.2rem 0 0;
    padding: 1.05rem 1.15rem;
    border-radius: 1.1rem;
    border: 1px dashed rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.88);
    color: rgba(203, 213, 245, 0.82);
}

.top15-wrapper {
    margin-top: 2rem;
    border-radius: 1.4rem;
    padding: 1.6rem 1.8rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.3), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(148, 163, 184, 0.8);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.98);
}

.top15-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.top15-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.top15-header h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.top15-header p {
    font-size: 0.8rem;
    color: #cbd5f5;
    max-width: 22rem;
}

.top15-week-range {
    text-align: right;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.top15-week-range span:first-child {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
}

.chart-cards {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.chart-card {
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.85rem 0.9rem 0.9rem;
}

.chart-card-top15 {
    border-color: rgba(34, 211, 238, 0.28);
}

.chart-card-top10 {
    border-color: rgba(244, 114, 182, 0.28);
}

.chart-card-covers {
    border-color: rgba(35, 255, 177, 0.28);
}

.chart-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.chart-rank {
    width: 56px;
    height: 56px;
    border-radius: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: rgba(229, 231, 235, 0.98);
    background: radial-gradient(circle at 30% 0, rgba(34, 211, 238, 0.18), rgba(8, 10, 20, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.chart-move {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(8, 10, 20, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: rgba(229, 231, 235, 0.9);
    white-space: nowrap;
}

.chart-move-up {
    border-color: rgba(34, 197, 94, 0.35);
    color: rgba(134, 239, 172, 0.95);
}

.chart-move-down {
    border-color: rgba(239, 68, 68, 0.35);
    color: rgba(254, 202, 202, 0.95);
}

.chart-move-new {
    border-color: rgba(234, 179, 8, 0.38);
    color: rgba(253, 224, 71, 0.95);
}

.chart-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.chart-card-topline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}

.chart-artist-link {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.98);
}

.chart-artist-link:hover {
    color: #fff;
}

.chart-sep {
    color: rgba(203, 213, 245, 0.55);
}

.chart-track {
    color: rgba(203, 213, 245, 0.92);
    font-weight: 500;
}

.chart-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 0.78rem;
    color: rgba(203, 213, 245, 0.78);
}

.chart-card-media {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(0, 0, 0, 0.55);
}

.chart-card-media iframe {
    width: 100%;
    height: 152px;
    border: 0;
    display: block;
    aspect-ratio: auto;
}

.chart-card-media-wide iframe {
    height: 180px;
    aspect-ratio: auto;
}

.chart-card-media img {
    width: 100%;
    height: 152px;
    object-fit: cover;
    aspect-ratio: auto;
}

.chart-card-media-wide img {
    height: 180px;
    aspect-ratio: auto;
}

.chart-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chart-interaction-btn {
    gap: 0.55rem;
}

.chart-interaction-btn[data-track-like] {
    padding-right: 0.95rem;
}

.chart-interaction-btn .track-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    color: rgba(229, 231, 235, 0.92);
    background: rgba(8, 10, 20, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.chart-interaction-btn.is-liked {
    border-color: rgba(236, 72, 153, 0.65);
    box-shadow: 0 0 22px rgba(236, 72, 153, 0.16);
}

.chart-fan-favorite {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(234, 179, 8, 0.38);
    background: rgba(8, 10, 20, 0.72);
    color: rgba(253, 224, 71, 0.95);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.track-comment-panel {
    display: none;
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(8, 10, 20, 0.6);
}

.track-comments {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-height: 220px;
    overflow: auto;
    padding-right: 0.2rem;
}

.track-comments-empty {
    color: rgba(203, 213, 245, 0.78);
    font-size: 0.85rem;
}

.track-comment {
    padding: 0.6rem 0.7rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.75);
}

.track-comment-name {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.78);
    margin-bottom: 0.25rem;
}

.track-comment-text {
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(229, 231, 235, 0.95);
}

.track-comment-form {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.track-comment-form input,
.track-comment-form textarea {
    width: 100%;
}

.track-comment-form textarea {
    resize: vertical;
}

.chart-move-cell {
    text-align: center;
}

@media (max-width: 980px) {
    .chart-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .chart-cards {
        grid-template-columns: minmax(0, 1fr);
    }
}

.top15-table-container {
    margin-top: 0.4rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.98);
}

.top15-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    font-size: 0.86rem;
}

.top15-table thead {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), rgba(236, 72, 153, 0.12));
}

.top15-table th,
.top15-table td {
    padding: 0.6rem 0.9rem;
    text-align: left;
    border-bottom: 1px solid rgba(30, 64, 175, 0.6);
}

.top15-table th {
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #9ca3af;
}

.top15-table td {
    color: #e5e7eb;
}

.top15-table tbody tr:nth-child(2n) {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.25));
}

.top15-table tbody tr:nth-child(2n + 1) {
    background: rgba(15, 23, 42, 0.95);
}

.top15-table tbody tr:first-child td {
    border-top: 1px solid rgba(37, 99, 235, 0.7);
}

.top15-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
}

.top15-table td:first-child {
    font-weight: 600;
    text-align: center;
}

.top15-table td:nth-child(2),
.top15-table td:nth-child(3),
.top15-table td:nth-child(4) {
    text-align: center;
}

.top15-table td:nth-child(5) {
    font-weight: 500;
}

.top15-table-container::-webkit-scrollbar {
    height: 6px;
}

.top15-table-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.9);
}

.top15-table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #22d3ee, #ec4899);
    border-radius: 999px;
}

.social-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.social-panel {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-live-card {
    grid-column: 1 / -1;
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.social-icon-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 0.6rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.28), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.social-icon-tile i {
    font-size: 1.3rem;
}

.social-icon-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.95);
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.4), rgba(15, 23, 42, 0.98));
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.98);
}

.showcase-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2.2rem 0 2.6rem;
}

.showcase-header {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
    gap: 1.35rem;
    align-items: stretch;
}

.showcase-cta-card h3 {
    margin-bottom: 0.35rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.showcase-cta-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #cbd5f5;
}

.showcase-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.showcase-card {
    border-radius: 1.05rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.96));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.showcase-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

.showcase-card-media {
    position: relative;
    background: rgba(8, 10, 20, 0.8);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.showcase-poster,
.showcase-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: rgba(8, 10, 20, 0.85);
}

.showcase-media-placeholder {
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(229, 231, 235, 0.9);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.showcase-media-placeholder i {
    font-size: 1.35rem;
    color: rgba(56, 189, 248, 0.85);
}

.showcase-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: rgba(8, 10, 20, 0.65);
    color: rgba(229, 231, 235, 0.9);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.showcase-card-body {
    padding: 0.95rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.showcase-card-body h3 {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: #e5e7eb;
}

.showcase-card-body p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(203, 213, 245, 0.85);
    flex: 1;
}

@media (max-width: 960px) {
    .showcase-header {
        grid-template-columns: minmax(0, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .showcase-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.social-live-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin: 0.25rem 0 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(8, 10, 20, 0.62);
    color: rgba(229, 231, 235, 0.92);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.social-live-badge-live {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.18);
    color: rgba(254, 202, 202, 0.95);
}

.social-live-actions {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.show-countdown {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.35);
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), rgba(8, 10, 20, 0.62));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.show-countdown-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(156, 163, 175, 0.95);
}

.show-countdown-time {
    margin-top: 0.35rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.16em;
    color: rgba(229, 231, 235, 0.98);
}

.show-countdown-meta {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    color: rgba(203, 213, 245, 0.85);
    font-size: 0.86rem;
    align-items: baseline;
}

.show-countdown-title {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.show-countdown-when {
    color: rgba(203, 213, 245, 0.72);
}

.show-lineup {
    margin-top: 1rem;
    padding: 0.95rem 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(8, 10, 20, 0.55);
}

.show-lineup h3 {
    margin: 0 0 0.8rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.95);
}

.show-lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.show-card {
    border-radius: 0.95rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.75);
}

.show-card-day {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(156, 163, 175, 0.95);
}

.show-card-title {
    margin-top: 0.35rem;
    font-weight: 700;
    color: rgba(229, 231, 235, 0.98);
    line-height: 1.35;
}

.show-card-time {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: rgba(203, 213, 245, 0.78);
}

.show-lineup-note {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: rgba(203, 213, 245, 0.72);
}

@media (max-width: 900px) {
    .show-lineup-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.social-live-schedule {
    margin-top: 1rem;
    padding: 0.9rem 0.95rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(8, 10, 20, 0.55);
}

.social-live-schedule h3 {
    margin: 0 0 0.6rem;
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(229, 231, 235, 0.95);
}

.social-live-schedule ul {
    margin: 0;
    padding-left: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: rgba(203, 213, 245, 0.9);
    font-size: 0.86rem;
    line-height: 1.55;
}

.social-live-schedule-sub {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: rgba(203, 213, 245, 0.75);
}

.discord-panel .intro-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.discord-embed {
    margin-top: 1.1rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.98);
}

.discord-embed iframe {
    width: 100%;
    height: 360px;
    display: block;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-card {
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.15), rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.intro-card:hover::before {
    transform: translateX(100%);
}

.intro-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.95), 0 0 20px rgba(59, 130, 246, 0.2);
    background: radial-gradient(circle at top left, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.95));
}

.intro-card-infinite15:hover {
    border-color: rgba(34, 211, 238, 0.8);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.95), 0 0 30px rgba(34, 211, 238, 0.3);
}

.intro-card-top10:hover {
    border-color: rgba(255, 43, 214, 0.7);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.95), 0 0 34px rgba(255, 43, 214, 0.22);
}

.intro-card-artists:hover {
    border-color: rgba(35, 255, 177, 0.55);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.95), 0 0 34px rgba(35, 255, 177, 0.18);
}

.intro-card-discord:hover {
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.95), 0 0 30px rgba(99, 102, 241, 0.3);
}

.intro-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #cbd5f5;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.intro-card:hover .intro-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.intro-card-infinite15 .intro-icon { color: #22d3ee; border-color: rgba(34, 211, 238, 0.4); }
.intro-card-top10 .intro-icon { color: #ff2bd6; border-color: rgba(255, 43, 214, 0.35); }
.intro-card-artists .intro-icon { color: #23ffb1; border-color: rgba(35, 255, 177, 0.28); }
.intro-card-discord .intro-icon { color: #6366f1; border-color: rgba(99, 102, 241, 0.4); }

.intro-card h2 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.intro-card:hover h2 {
    background: linear-gradient(90deg, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.intro-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.intro-card:hover p {
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.site-footer {
    padding: 1.6rem 6vw 2.2rem;
    margin-top: auto;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #9ca3af;
}

@keyframes pulseOuter {
    0% {
        transform: scale(0.96);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
    100% {
        transform: scale(0.96);
        opacity: 0.6;
    }
}

@keyframes pulseInner {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.7;
    }
}

@keyframes equalize {
    0% {
        transform: scaleY(0.6);
    }
    100% {
        transform: scaleY(1.2);
    }
}

@media (max-width: 960px) {
    .site-header {
        padding-inline: 1.25rem;
    }

    .site-main {
        padding-inline: 1.25rem;
    }

    .site-footer {
        padding-inline: 1.25rem;
    }

    .banner {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 2.4rem;
    }

    .banner-visual {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .nav-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-groups {
        width: 100%;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1.1rem;
    }

    .nav-cta {
        width: 100%;
        flex-wrap: wrap;
    }

    .home-overview-inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.8rem 1.6rem;
    }

    .home-overview-pulse {
        min-height: 12rem;
    }

    .chart-picker-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-callouts-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vote-guide-inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.6rem 1.5rem;
    }

    .admin-nav {
        padding-left: 0;
        border-left: 0;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        flex-wrap: wrap;
        gap: 1.1rem;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 0.75rem;
        box-shadow: none;
        background: rgba(15, 23, 42, 0.55);
    }

    .intro-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .top15-candidates-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .top15-candidates-note {
        text-align: left;
    }

    .top15-candidates-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .social-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .social-icons-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .top-bar-right {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .banner-meta {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-overview-inner {
        padding: 1.45rem 1.25rem;
    }

    .chart-card {
        padding: 1.35rem 1.25rem 1.25rem;
    }

    .callout-card {
        padding: 1.35rem 1.25rem 1.25rem;
    }

    .vote-guide-inner {
        padding: 1.35rem 1.2rem;
    }

    .intro-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .top15-candidates-list {
        grid-template-columns: 1fr;
    }

    .top15-candidate-embed iframe {
        height: 80px;
    }

    .social-icons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* Charts Control Center Styles */
.charts-control-center {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.05), inset 0 0 20px rgba(59, 130, 246, 0.05);
    position: relative;
    overflow: hidden;
}

.charts-control-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.charts-control-header {
    margin-bottom: 2rem;
    text-align: center;
}

.charts-control-header h2 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.charts-control-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.charts-control-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.charts-control-section {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.charts-control-section:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-2px);
}

.section-top15 { border-top: 3px solid #22d3ee; }
.section-top10 { border-top: 3px solid #f472b6; }
.section-covers { border-top: 3px solid #23ffb1; }
.section-system { border-top: 3px solid #ef4444; }

.charts-control-section-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.charts-control-section-header i {
    font-size: 1.2rem;
}

.section-top15 .charts-control-section-header i { color: #22d3ee; }
.section-top10 .charts-control-section-header i { color: #f472b6; }
.section-covers .charts-control-section-header i { color: #23ffb1; }
.section-system .charts-control-section-header i { color: #ef4444; }

.charts-control-section-header h3 {
    font-family: "Orbitron", system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e2e8f0;
}

.charts-control-actions {
    display: grid;
    gap: 1rem;
}

.charts-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.8rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.charts-btn:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(148, 163, 184, 0.4);
    transform: translateX(4px);
}

.charts-btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.5);
    font-size: 1rem;
}

.btn-primary .charts-btn-icon { color: #22d3ee; background: rgba(34, 211, 238, 0.1); }
.btn-accent .charts-btn-icon { color: #f472b6; background: rgba(244, 114, 182, 0.1); }
.btn-success .charts-btn-icon { color: #4ade80; background: rgba(74, 222, 128, 0.1); }
.btn-warning .charts-btn-icon { color: #facc15; background: rgba(250, 204, 21, 0.1); }
.btn-danger .charts-btn-icon { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.btn-som .charts-btn-icon {
    color: #fff;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(139, 92, 246, 0.2), rgba(255, 43, 214, 0.22));
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.12), 0 0 18px rgba(255, 43, 214, 0.12);
}

.charts-som-card {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.1), rgba(15, 23, 42, 0.75));
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.charts-som-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.75);
}

.charts-som-track {
    font-size: 0.92rem;
    font-weight: 600;
    color: #e5e7eb;
}

.charts-som-meta {
    font-size: 0.78rem;
    color: rgba(203, 213, 245, 0.82);
}

.charts-som-list {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    display: grid;
    gap: 0.4rem;
    max-height: 220px;
    overflow: auto;
}

.charts-som-list-item {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.charts-som-list-rank {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(203, 213, 245, 0.7);
    min-width: 2.3rem;
}

.charts-som-list-track {
    font-size: 0.82rem;
    color: rgba(229, 231, 235, 0.95);
}

.charts-som-card-top15 {
    border-color: rgba(34, 211, 238, 0.22);
}

.charts-som-card-top10 {
    border-color: rgba(244, 114, 182, 0.22);
    background: radial-gradient(circle at top left, rgba(244, 114, 182, 0.1), rgba(15, 23, 42, 0.75));
}

.charts-som-card-covers {
    border-color: rgba(35, 255, 177, 0.22);
    background: radial-gradient(circle at top left, rgba(35, 255, 177, 0.08), rgba(15, 23, 42, 0.75));
}

.charts-btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.btn-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-subtitle {
    font-size: 0.7rem;
    color: #94a3b8;
}

.charts-btn:hover .btn-title { color: #fff; }

/* Feedback Messages */
.charts-feedback {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: slideIn 0.3s ease;
}

.charts-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.charts-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
