/* ===== CSS Custom Properties ===== */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-glow: rgba(99, 102, 241, 0.18);
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --success: #16a34a;
    --warning: #d97706;
    --info: #2563eb;
    --bg-body: #f5f5f7;
    --bg-card: #ffffff;
    --bg-card-border: rgba(0, 0, 0, 0.08);
    --bg-input: #f0f0f3;
    --bg-nav: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* ===== Navigation ===== */
nav {
    background: var(--bg-nav);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--primary) !important;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* ===== Main Content ===== */
main {
    flex: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin: -2.5rem -1.5rem 2.5rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #f5f5f7 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: heroShimmer 6s ease-in-out infinite alternate;
}

@keyframes heroShimmer {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===== Content Section ===== */
.content-section {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    line-height: 1.85;
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section strong {
    color: var(--text-primary);
}

/* ===== Example Box ===== */
.example-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

/* ===== Funfact ===== */
.funfact {
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--warning);
    padding: 0.75rem 1.25rem;
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    margin: 1.5rem 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xs);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--bg-input);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 10px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-danger {
    background: var(--danger);
    border-color: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: var(--danger-hover);
    border-color: var(--danger-hover);
    color: #fff;
}

.nav-links .btn-admin,
.btn-admin {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--primary);
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-xs);
    margin: 0 0.5rem;
}

.btn-admin:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-small {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
}

/* ===== Alerts ===== */
.alert {
    padding: 1rem 1.25rem 1rem 2.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid;
}

.alert::before {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
}

.alert-success {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.25);
    color: var(--success);
}

.alert-success::before {
    content: '✓';
}

.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.25);
    color: var(--danger);
}

.alert-error::before {
    content: '⚠';
}

.alert-info {
    background: rgba(37, 99, 235, 0.06);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--info);
}

.alert-info::before {
    content: 'ℹ';
}

.alert ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alert ul li + li {
    margin-top: 0.25rem;
}

/* ===== Forms ===== */
.form-container {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-container h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.form-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    padding-right: 2.8rem;
}

.password-toggle {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.password-toggle:hover {
    color: var(--text-primary);
}

.password-toggle svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    font-family: var(--font);
    background: var(--bg-input);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
    font-family: var(--font);
    background: var(--bg-input);
    border: 2px dashed rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-xs);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.form-group input[type="file"]:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

hr {
    border: none;
    border-top: 1px solid var(--bg-card-border);
    margin: 1.5rem 0;
}

/* ===== Dashboard ===== */
.dashboard {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dashboard-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
}

.dashboard-header h1::before {
    content: '';
}

.dashboard-header p {
    color: var(--text-secondary);
    flex: 1;
}

.dashboard h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.dashboard h2::before {
    content: '';
}

.dashboard h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== Tables ===== */
.song-list {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}

thead th {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.03));
    color: var(--text-primary);
    font-weight: 600;
    text-align: left;
    padding: 0.15rem 0.75rem;
    border-bottom: 1px solid var(--bg-card-border);
    white-space: nowrap;
}

thead th:first-child {
    border-radius: var(--radius-xs) 0 0 0;
}

thead th:last-child {
    border-radius: 0 var(--radius-xs) 0 0;
}

tbody td {
    padding: 0.1rem 0.75rem;
    border-bottom: 1px solid var(--bg-card-border);
    color: var(--text-secondary);
    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr {
    transition: background var(--transition);
}

tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

tbody tr.clickable-row {
    cursor: pointer;
}

.file-links {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

/* Download Dropdown */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    cursor: pointer;
}

.download-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 170px;
    margin-top: 0.3rem;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.download-dropdown.open .download-dropdown-menu {
    display: block;
}

.download-dropdown-item {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: background 0.15s;
}

.download-dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    text-decoration: none;
}

.download-dropdown-item-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: auto;
}

.download-dropdown-item-disabled:hover {
    background: transparent;
    color: var(--text-primary);
}

.icon-download {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 2px;
}

/* ===== Song Detail ===== */
.song-detail {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.song-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-card-border);
}

.song-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.song-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.song-description {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.song-detail h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.song-detail h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.versions-table {
    overflow: visible;
    margin-bottom: 2rem;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-play:hover {
    background: var(--primary-hover);
    color: #fff;
}

.btn-play .icon-play {
    width: 10px;
    height: 10px;
    margin-left: 1px;
}

/* Audio Modal */
.audio-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-modal {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    width: 90%;
    max-width: 420px;
    box-shadow: var(--shadow);
}

.audio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.audio-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    padding: 0 0.25rem;
}

.audio-modal-close:hover {
    color: var(--text-primary);
}

/* Custom Audio Player */
.custom-player {
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.player-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
    flex-shrink: 0;
}

.player-btn:hover {
    color: var(--primary);
}

.player-btn-play {
    background: var(--primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background var(--transition), transform var(--transition);
}

.player-btn-play:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.08);
}

.player-btn-play svg {
    width: 18px;
    height: 18px;
}

.player-btn-play .icon-play {
    margin-left: 2px;
}

.player-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    min-width: 2.5em;
    text-align: center;
    flex-shrink: 0;
    user-select: none;
}

.player-progress-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    height: 20px;
    cursor: pointer;
}

.player-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.player-progress-filled {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: none;
}

.player-progress-thumb {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.player-progress-wrap:hover .player-progress-thumb {
    opacity: 1;
}

.player-progress-wrap:hover .player-progress-bar {
    height: 6px;
}

.player-volume-wrap {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.player-btn-vol {
    color: var(--text-muted);
}

.player-btn-vol:hover {
    color: var(--primary);
}

.player-volume-slider-wrap {
    width: 60px;
    height: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.player-volume-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.player-volume-filled {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: none;
}

/* Edit Modal */
.edit-modal {
    max-width: 480px;
}

.edit-modal .form-group {
    margin-bottom: 1rem;
}

.edit-modal .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.edit-modal .form-group input,
.edit-modal .form-group textarea {
    width: 100%;
    box-sizing: border-box;
}

.upload-form {
    max-width: 520px;
}

/* ===== Footer ===== */
footer {
    background: var(--bg-nav);
    border-top: 1px solid var(--bg-card-border);
    text-align: center;
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        padding: 2.5rem 1.25rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .dashboard,
    .song-detail,
    .content-section,
    .form-container {
        padding: 1.5rem;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    table {
        font-size: 0.8rem;
    }

    thead th {
        padding: 0.15rem 0.4rem;
    }

    tbody td {
        padding: 0.1rem 0.4rem;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .nav-links {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .player-volume-slider-wrap {
        display: none;
    }
}


/* Nav dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-dropdown-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #f0f0f0;
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-input,
.filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

.filter-input {
    flex: 1;
    min-width: 150px;
}

.filter-select {
    min-width: 160px;
}

/* Sortable table headers */
th.sortable {
    user-select: none;
}

th.sortable .sort-icon {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-left: 2px;
}

/* Row filter button (funnel icon) */
.btn-filter-row {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 0 3px;
    vertical-align: middle;
    opacity: 0.4;
    transition: opacity 0.2s;
    line-height: 1;
}

.btn-filter-row:hover {
    opacity: 1;
}

/* Filter active banner */
.filter-active-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    color: var(--text-primary);
}

.filter-active-banner .btn-clear-filter {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0 4px;
    text-decoration: underline;
}

/* Honeypot field - hidden from human users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Blockquote style for song description */
blockquote {
  background: #f9f9f9;
  /*border-left: 10px solid #ccc;*/
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}