/* Submission Form Styles */
.submission-form-container {
    --lars-form-accent-border: var(--lars-form-button-background, #f97316);
    --lars-form-accent-border-strong: var(--lars-form-button-hover-background, rgba(249, 115, 22, 0.9));
    --lars-form-drop-bg: rgba(17, 12, 8, 0.9);
    --lars-form-drop-bg-strong: rgba(17, 12, 8, 0.94);
    --lars-form-button-shadow: rgba(249, 115, 22, 0.35);
    --lars-form-button-shadow-strong: rgba(249, 115, 22, 0.45);
    --lars-form-font-base: 16px;
    --lars-form-font-label: 12px;
    --lars-form-font-heading: 18px;
    --lars-form-font-button: 16px;
    max-width: 760px;
    margin: 24px auto;
    padding: 28px;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08), transparent 26%), var(--lars-form-background, #0b1018);
    border: 1px solid var(--lars-form-border, rgba(255, 255, 255, 0.06));
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    color: #e5e7eb;
}

.submission-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--lars-form-heading-color, #f3f4f6);
    letter-spacing: 0.04em;
    font-size: var(--lars-form-font-heading, 18px);
}

.user-queue-position {
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--lars-form-font-base, 16px);
    margin-bottom: 14px;
    font-weight: 700;
}

.user-queue-position a {
    color: var(--lars-form-button-font-color, #f3f4f6);
    text-decoration: underline;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: var(--lars-form-font-label, 12px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lars-form-label-color, #e5e7eb);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lars-form-input-border, rgba(255, 255, 255, 0.12));
    border-radius: 12px;
    font-size: var(--lars-form-font-base, 16px);
    background: var(--lars-form-input-bg, rgba(255, 255, 255, 0.04));
    color: var(--lars-form-input-color, #f3f4f6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(229, 231, 235, 0.7);
    opacity: 1;
    font-weight: 500;
}

.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lars-form-input-border, rgba(255, 255, 255, 0.12));
    border-radius: 12px;
    font-size: var(--lars-form-font-base, 16px);
    background: var(--lars-form-input-bg, rgba(255, 255, 255, 0.04));
    color: var(--lars-form-input-color, #f3f4f6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--lars-form-accent-border, #f97316);
    box-shadow: 0 0 0 1px var(--lars-form-accent-border, #f97316), 0 0 0 6px var(--lars-form-accent-border-strong, rgba(249, 115, 22, 0.12));
    background: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background: #000;
    color: #fff;
}

.form-group textarea {
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.upload-group {
    margin-top: 26px;
}

.upload-toggle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
    max-width: none;
    width: 100%;
}

.upload-toggle {
    width: 100%;
    border: 1px solid var(--lars-form-input-border, rgba(255, 255, 255, 0.08));
    background: rgba(255, 255, 255, 0.04);
    color: #f3f4f6;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    text-align: center;
    font-size: var(--lars-form-font-button, 16px);
    min-height: 56px;
}

.upload-toggle:hover {
    border-color: var(--lars-form-accent-border, rgba(249, 115, 22, 0.4));
    transform: translateY(-1px);
}

.upload-toggle.is-active {
    border-color: var(--lars-form-accent-border, #f97316);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.3), 0 10px 30px rgba(0, 0, 0, 0.35);
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.04));
}

.upload-type-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.upload-type-icon::before {
    content: "\21e7";
    font-size: 16px;
    color: var(--lars-form-input-color, #f3f4f6);
}

.upload-type-icon--globe::before {
    content: "\25cf";
}

.upload-type-title {
    font-weight: 700;
    font-size: var(--lars-form-font-button, 16px);
}

.upload-toggle-content {
    display: none;
}

.upload-toggle-content.is-active {
    display: block;
}

.upload-drop {
    position: relative;
}

.upload-input {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 1px;
    opacity: 0.001;
}

.upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px dashed var(--lars-form-accent-border, rgba(249, 115, 22, 0.65));
    background: var(--lars-form-drop-bg, rgba(17, 12, 8, 0.9));
    border-radius: 16px;
    padding: 32px 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 170px;
    text-align: center;
}

.upload-dropzone:hover {
    border-color: var(--lars-form-accent-border-strong, rgba(249, 115, 22, 0.9));
    background: var(--lars-form-drop-bg-strong, rgba(17, 12, 8, 0.94));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.upload-dropzone.is-hovered {
    border-color: var(--lars-form-accent-border-strong, rgba(249, 115, 22, 0.9));
    background: var(--lars-form-drop-bg-strong, rgba(17, 12, 8, 0.96));
}

.upload-drop-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.upload-drop-icon::before {
    content: "\21e7";
    font-size: 18px;
    color: var(--lars-form-button-background, #f97316);
}

.upload-drop-title {
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--lars-form-input-color, #f3f4f6);
}

.upload-drop-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.upload-drop-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.upload-drop-status {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.donation-group.hidden {
    display: none;
}

.lane-group {
    margin-top: 10px;
}

.lane-header {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.lane-toggle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lane-toggle {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f3f4f6;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-size: var(--lars-form-font-button, 16px);
}

.lane-toggle:hover {
    border-color: var(--lars-form-accent-border, rgba(249, 115, 22, 0.4));
    transform: translateY(-1px);
}

.lane-toggle.is-active {
    border-color: var(--lars-form-accent-border, #f97316);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.3), 0 10px 30px rgba(0, 0, 0, 0.35);
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.04));
}

.lane-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lane-text--centered {
    align-items: center;
    text-align: center;
    width: 100%;
}

.lane-title {
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: var(--lars-form-font-button, 16px);
}

.lane-subtitle {
    font-size: calc(var(--lars-form-font-button, 16px) * 0.8);
    color: rgba(255, 255, 255, 0.7);
}

.lane-price {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    font-size: var(--lars-form-font-button, 16px);
}

.lane-price--stacked {
    margin-top: 2px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submission-form-popup-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.submission-form-open-btn {
    background-color: var(--lars-popup-button-background, #111827);
    color: var(--lars-popup-button-color, #ffffff);
    padding: 16px 26px;
    border-radius: 14px;
    border: 1px solid transparent;
    border-color: var(--lars-popup-button-border, rgba(255, 255, 255, 0.25));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: block;
    width: 100%;
}

.submission-form-open-btn:hover {
    transform: translateY(-1px);
    background-color: var(--lars-popup-button-hover-background, #0f172a);
    border-color: var(--lars-popup-button-border, var(--lars-popup-button-hover-background, #0f172a));
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.35);
}

.submission-form-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.submission-form-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.submission-form-modal-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 14px;
    width: min(600px, 100%);
    max-height: 90vh;
    overflow: visible;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.85);
    z-index: 2;
    color: #fff;
}

.submission-form-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
}

.submission-form-modal-body {
    padding: 30px 30px 20px;
    overflow-y: auto;
    max-height: 85vh;
    background: transparent;
}

body.submission-form-modal-open {
    overflow: hidden;
}

.submission-form-container .submit-button {
    background-image: linear-gradient(
        135deg,
        var(--lars-form-button-background, #f97316),
        var(--lars-form-button-hover-background, #f59e0b)
    );
    background-color: var(--lars-form-button-background, #f97316);
    color: var(--lars-form-button-font-color, #111);
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: var(--lars-form-font-button, 16px);
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px var(--lars-form-button-shadow, rgba(249, 115, 22, 0.35));
}

.submission-form-container .submit-button:hover {
    background-color: var(--lars-form-button-hover-background, #ea580c);
    transform: translateY(-1px);
    box-shadow: 0 14px 36px var(--lars-form-button-shadow-strong, rgba(249, 115, 22, 0.45));
}

.submit-button:disabled {
    background: #6b7280;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.8;
}

/* Competition Bracket Styles */
.competition-bracket-root {
    --lars-bracket-bg: #0b1220;
    --lars-bracket-font-color: #f8fafc;
    --lars-bracket-heading-color: #f8fafc;
    --lars-bracket-card-background: #111827;
    --lars-bracket-card-border: rgba(255, 255, 255, 0.15);
    --lars-bracket-winner-accent: #38bdf8;
    --lars-bracket-winner-glow: rgba(56, 189, 248, 0.25);
    --lars-bracket-label-color: rgba(255, 255, 255, 0.45);
    --lars-bracket-button-bg: #2563eb;
    --lars-bracket-button-color: #f8fafc;
    --lars-bracket-button-hover: #3b82f6;
    --lars-bracket-action-button-bg: #3b82f6;
    --lars-bracket-action-button-color: #f8fafc;
    --lars-bracket-action-button-hover: #60a5fa;
    --lars-bracket-vote-button-bg: #16a34a;
    --lars-bracket-vote-button-color: #f8fafc;
    --lars-bracket-vote-button-hover: #22c55e;
    --lars-bracket-font-base: 16px;
    --lars-bracket-font-heading: 1.5rem;
    --lars-bracket-gap: 20px;
    font-family: var(--lars-bracket-font-family, 'Inter', 'Segoe UI', system-ui, sans-serif);
    font-size: var(--lars-bracket-font-base);
    background: var(--lars-bracket-bg, #0b1220);
    border: 1px solid var(--lars-bracket-card-border);
    border-radius: 20px;
    padding: 28px;
    max-width: 1200px;
    margin: 32px auto;
    color: var(--lars-bracket-font-color);
    box-shadow: 0 20px 60px rgba(5, 5, 15, 0.5);
}

.competition-bracket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.competition-bracket-header h3 {
    margin: 0;
    font-size: var(--lars-bracket-font-heading, 1.5rem);
    letter-spacing: 0.04em;
    color: var(--lars-bracket-heading-color, var(--lars-bracket-font-color));
}

.competition-bracket-meta {
    font-size: 0.9rem;
    color: var(--lars-bracket-label-color, rgba(248, 250, 252, 0.75));
}

.competition-bracket-rounds {
    display: flex;
    gap: var(--lars-bracket-gap);
    overflow-x: auto;
    padding-bottom: 10px;
}

.competition-bracket-round {
    min-width: 220px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--lars-bracket-card-border);
    border-radius: 14px;
    padding: 12px;
}

.competition-bracket-round-label {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--lars-bracket-heading-color, rgba(255, 255, 255, 0.75));
}

.competition-bracket-round .round-cohort {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.competition-round-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.competition-round-summary .round-status {
    font-size: 0.95rem;
    color: var(--lars-bracket-label-color, #cbd5e1);
    margin-bottom: 6px;
}

.competition-round-summary .round-status.muted {
    color: var(--lars-bracket-label-color, #94a3b8);
}

.competition-round-winners {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.competition-round-winners .winner-artist {
    font-weight: 700;
    color: #e2e8f0;
}

.competition-round-winners .winner-song {
    color: #cbd5e1;
}

.competition-round-toggle {
    align-self: flex-start;
    margin-top: 4px;
}

.competition-bracket-match {
    background: var(--lars-bracket-card-background);
    border: 1px solid var(--lars-bracket-card-border);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.competition-bracket-match.is-complete {
    opacity: 0.65;
}

.competition-bracket-meta-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.45));
}

.competition-bracket-slot {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: var(--lars-bracket-font-base, 16px);
}

.competition-bracket-slot .slot-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 6px;
    border-radius: 8px;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.6));
}

.competition-bracket-slot .slot-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.6));
}

.competition-bracket-slot .slot-role {
    font-size: 0.78rem;
    color: #e0f2fe;
    font-weight: 700;
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(56, 189, 248, 0.5);
    padding: 2px 8px;
    border-radius: 999px;
    justify-self: center;
}

.competition-bracket-slot .slot-name {
    font-weight: 600;
    color: var(--lars-bracket-font-color);
    font-size: calc(var(--lars-bracket-font-base, 16px) * 1);
}

.competition-bracket-slot .slot-song {
    font-size: calc(var(--lars-bracket-font-base, 16px) * 0.9);
    color: rgba(255, 255, 255, 0.7);
}

.competition-winner-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.competition-winner-select {
    min-width: 180px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #e2e8f0;
    padding: 8px 12px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #e2e8f0 50%), linear-gradient(135deg, #e2e8f0 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.slot-votes {
    font-size: 0.8rem;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.75));
    display: inline-block;
    margin-left: auto;
    justify-self: end;
}

.competition-slot-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.competition-slot-actions .button,
.competition-slot-actions .competition-bracket-play,
.competition-slot-actions .competition-vote-btn,
.competition-slot-actions .competition-remove-vote {
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.2;
    background: var(--lars-bracket-button-bg, #1e3a8a);
    color: var(--lars-bracket-button-color, #f8fafc);
    border: 1px solid var(--lars-bracket-button-bg, #1e3a8a);
    border-radius: 8px;
}

.competition-slot-actions .competition-bracket-play {
    background: var(--lars-bracket-action-button-bg, var(--lars-bracket-button-bg, #2563eb));
    border-color: var(--lars-bracket-action-button-bg, var(--lars-bracket-button-bg, #2563eb));
    color: var(--lars-bracket-action-button-color, var(--lars-bracket-button-color, #f8fafc));
}
.competition-slot-actions .competition-bracket-play:hover {
    background: var(--lars-bracket-action-button-hover, var(--lars-bracket-button-hover, #3b82f6));
    border-color: var(--lars-bracket-action-button-hover, var(--lars-bracket-button-hover, #3b82f6));
    color: var(--lars-bracket-action-button-color, var(--lars-bracket-button-color, #f8fafc));
}

.competition-slot-actions .competition-vote-btn,
.competition-slot-actions .competition-remove-vote {
    background: var(--lars-bracket-vote-button-bg, var(--lars-bracket-button-bg, #16a34a)) !important;
    border-color: var(--lars-bracket-vote-button-bg, var(--lars-bracket-button-bg, #16a34a)) !important;
    color: var(--lars-bracket-vote-button-color, var(--lars-bracket-button-color, #f8fafc)) !important;
}

.competition-slot-actions .button:hover {
    background: var(--lars-bracket-button-hover, #2563eb);
    color: var(--lars-bracket-button-color, #f8fafc);
}

.competition-slot-actions .competition-vote-btn:hover,
.competition-slot-actions .competition-remove-vote:hover {
    background: var(--lars-bracket-vote-button-hover, var(--lars-bracket-button-hover, #22c55e)) !important;
    border-color: var(--lars-bracket-vote-button-hover, var(--lars-bracket-button-hover, #22c55e)) !important;
    color: var(--lars-bracket-vote-button-color, var(--lars-bracket-button-color, #f8fafc)) !important;
}

.competition-remove-vote {
    margin-top: 8px;
    align-self: flex-start;
    background: var(--lars-bracket-vote-button-bg, var(--lars-bracket-button-bg, #16a34a)) !important;
    color: var(--lars-bracket-vote-button-color, var(--lars-bracket-button-color, #f8fafc)) !important;
    border: 1px solid var(--lars-bracket-vote-button-bg, var(--lars-bracket-button-bg, #16a34a)) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
}

.round-cohort.collapsed {
    display: none;
}

.competition-bracket-slot.winner {
    border-color: var(--lars-bracket-winner-accent);
    box-shadow: 0 0 16px var(--lars-bracket-winner-glow);
    background: var(--lars-bracket-winner-glow);
}

.competition-bracket-slot.empty {
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.45);
}

.competition-bracket-slot.voted-for {
    border-color: var(--lars-bracket-winner-accent, #38bdf8);
    box-shadow: 0 0 12px var(--lars-bracket-winner-glow, rgba(56, 189, 248, 0.25));
    background: rgba(56, 189, 248, 0.08);
}

.competition-bracket-match-id {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.35));
}

.competition-bracket-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.competition-bracket-spinner,
.competition-bracket-empty {
    text-align: center;
    padding: 40px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
}

.competition-bracket-root[data-has-bracket="1"] .competition-bracket-spinner {
    display: none;
}

.competition-bracket-body {
    position: relative;
    min-height: 180px;
}

.competition-bracket-root.competition-bracket-no-border {
    border-color: transparent;
    box-shadow: none;
}

.competition-bracket-rounds::-webkit-scrollbar {
    height: 6px;
}

.competition-bracket-rounds::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.competition-bracket-rounds::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

.competition-bracket-updated {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
    .competition-bracket-root {
        padding: 20px;
    }
    .competition-bracket-round {
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .competition-bracket-root {
        padding: 18px;
    }
    .competition-bracket-rounds {
        gap: 12px;
    }
}

.competition-bracket-root .competition-bracket-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.competition-bracket-root .competition-bracket-header-text h3 {
    margin: 0;
}

.competition-bracket-root .competition-bracket-header-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.competition-bracket-status-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.competition-bracket-controls {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.competition-bracket-status-indicator {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.6);
    color: #32ff7e;
}

.competition-bracket-status-indicator.completed {
    color: #f97316;
}

.competition-bracket-status-indicator.idle {
    color: #94a3b8;
}

.competition-bracket-last-updated {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
}

.competition-bracket-refresh-status {
    font-size: 0.78rem;
    color: #32ff7e;
    font-weight: 600;
}

.competition-single-source-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.competition-single-source-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.competition-single-source-content {
    position: relative;
    background: #0b1220;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 18px;
    width: min(560px, 90vw);
    max-width: 720px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
    color: #fff;
    z-index: 10001;
}

.competition-single-source-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.competition-single-source-body {
    padding-top: 8px;
}

.competition-single-source-audio {
    width: 100%;
    margin-top: 32px;
}

.competition-single-source-info {
    margin-top: 14px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.competition-bracket-refresh {
    border-color: var(--lars-bracket-button-bg, rgba(59, 130, 246, 0.6));
    color: var(--lars-bracket-button-color, #fff);
    background: var(--lars-bracket-button-bg, rgba(59, 130, 246, 0.15));
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
}

.competition-bracket-fullscreen-toggle {
    border: 1px solid var(--lars-bracket-button-bg, rgba(255, 255, 255, 0.35));
    background: var(--lars-bracket-button-bg, rgba(255, 255, 255, 0.08));
    color: var(--lars-bracket-button-color, #fff);
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.competition-bracket-fullscreen-toggle:hover {
    background: var(--lars-bracket-button-hover, rgba(255, 255, 255, 0.18));
}

.competition-bracket-description {
    margin-top: 8px;
    margin-bottom: 12px;
}

.competition-bracket-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.competition-bracket-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    color: var(--lars-bracket-font-color, #fff);
    text-align: left;
    min-width: 180px;
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.competition-bracket-card:hover {
    border-color: var(--lars-bracket-winner-accent, #38bdf8);
    transform: translateY(-2px);
}

.competition-bracket-card.is-active {
    border-color: var(--lars-bracket-winner-accent, #38bdf8);
    box-shadow: 0 0 12px var(--lars-bracket-winner-glow, rgba(56, 189, 248, 0.25));
}

.competition-bracket-card-name {
    font-weight: 600;
}

.competition-bracket-card-meta {
    font-size: 0.8rem;
    opacity: 0.8;
}

.competition-bracket-card-rounds {
    font-size: 0.75rem;
    color: var(--lars-bracket-label-color, rgba(255, 255, 255, 0.6));
}

.competition-bracket-actions {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.competition-bracket-winner-btn {
    background: var(--lars-bracket-button-bg, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--lars-bracket-button-bg, rgba(255, 255, 255, 0.25));
    border-radius: 999px;
    color: var(--lars-bracket-button-color, #fff);
    padding: 6px 12px;
    font-size: 0.8rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.competition-bracket-winner-btn:hover {
    border-color: var(--lars-bracket-button-hover, var(--lars-bracket-winner-accent, #38bdf8));
    background: var(--lars-bracket-button-hover, rgba(56, 189, 248, 0.15));
    color: var(--lars-bracket-button-color, #fff);
}

.competition-single-source-btn {
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.competition-single-source-btn:hover {
    border-color: #32ff7e;
    color: #32ff7e;
}

.competition-bracket-root:fullscreen,
.competition-bracket-root.bracket-fullscreen {
    overflow-y: auto;
    max-height: 100vh;
    padding-bottom: 32px;
}

.competition-bracket-root:fullscreen .competition-bracket-rounds,
.competition-bracket-root.bracket-fullscreen .competition-bracket-rounds {
    flex-direction: column;
    gap: 16px;
    max-height: none;
}

@media (max-width: 768px) {
    .competition-bracket-cards {
        gap: 8px;
    }
    .competition-bracket-card {
        min-width: calc(50% - 6px);
    }
    .competition-bracket-root.bracket-fullscreen .competition-bracket-rounds {
        flex-direction: column;
    }
}

/* Audio Player Styles */
.audio-player-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.now-playing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.now-playing-section h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    text-align: center;
}

.now-playing-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.song-info h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: bold;
}

.song-info .artist {
    margin: 0 0 15px 0;
    font-size: 16px;
    opacity: 0.9;
}

.media-player {
    margin: 20px 0;
}

.audio-controls {
    margin: 15px 0;
}

.main-audio-player {
    width: 100%;
    height: 40px;
    border-radius: 20px;
}

.embedded-player {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.embedded-player iframe {
    border-radius: 8px;
    max-width: 100%;
}

.generic-link-player {
    background: rgba(255,255,255,0.2) !important;
    border: 2px dashed rgba(255,255,255,0.3);
    color: white !important;
}

.generic-link-player p {
    color: white !important;
    font-weight: bold;
}

.playlist-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.playlist-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 22px;
    text-align: center;
}

.playlist {
    display: grid;
    gap: 15px;
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.playlist-item:hover {
    background: #e9ecef;
    border-left-color: #0073aa;
    transform: translateX(5px);
}

.playlist-item .song-info h5 {
    margin: 0 0 5px 0;
}

.playlist-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.play-button:hover {
    background: #005a87;
    transform: translateY(-1px);
}

/* Active playlist item */
.playlist-item.active {
    background: #e7f3ff;
    border-color: #007cba;
}

.playlist-item.active .song-info h4 {
    color: #007cba;
}

.playlist-item .song-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
}

.playlist-item .artist {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.playlist-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.play-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.play-button:hover {
    background: #218838;
    transform: scale(1.05);
}

.play-button.playing {
    background: #dc3545;
}

.external-link {
    background: #0073aa;
    color: white !important;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.external-link:hover {
    background: #005a87;
    transform: scale(1.05);
}

/* Playlist Controls */
.playlist-platform-link {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.playlist-platform-link:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Submission List Styles */
.submission-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: var(--lars-list-font-base, 16px);
    line-height: 1.5;
}

.submission-list .submission-list-title,
.submission-list h2,
.submission-list .line-header {
    font-size: var(--lars-list-font-heading, 22px);
    font-weight: 800;
    margin-bottom: 16px;
}

.lars-list-card {
    background-color: var(--lars-card-bg, var(--lars-submission-bg-color, transparent));
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    padding: 18px;
    margin-bottom: 15px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lars-list-card:hover {
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.lars-card-no-border {
    border: none !important;
    box-shadow: none !important;
}

.submission-item {
    background-color: var(--lars-submission-bg-color, transparent);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    transition: border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    font-size: var(--lars-list-font-base, 16px);
}

.submission-item h4 {
    font-size: var(--lars-list-font-heading, 18px);
}

.submission-item p,
.submission-item .artist,
.submission-item .submission-meta {
    font-size: var(--lars-list-font-base, 16px);
}

.submission-item .artist {
    margin: 0;
}

.submission-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.submission-boost-controls {
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.submission-boost-controls .button {
    margin: 0 !important;
}

.lars-open-boost {
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.boost-payment-links .button {
    background: #0f0f0f !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    margin-top: 6px;
    flex: 1 1 180px;
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boost-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.boost-modal .boost-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.boost-modal .boost-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(420px, 92%);
    background: #0f0f0f;
    color: #f8fafc;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.boost-modal h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.boost-modal .boost-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.boost-modal .boost-status {
    margin-top: 6px;
    font-size: 13px;
    color: #e2e8f0;
}

.boost-modal .boost-payment-links .button {
    margin-top: 0;
}

.submission-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.submission-position {
    font-size: var(--lars-list-font-base, 16px);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.submission-actions .button,
.submission-actions .platform-link,
.submission-actions .lars-open-player-btn {
    font-size: var(--lars-list-font-base, 16px);
    padding: 8px 12px;
}

.submission-item:hover {
    border-color: #007cba;
    transform: translateY(-1px);
}

.submission-item.active {
    border-color: #007cba;
}

.submission-item .lars-player-wrapper,
.submission-item .lars-advanced-player,
.submission-item .lars-link-player-embed,
.submission-item iframe,
.spotlight-item .lars-player-wrapper,
.spotlight-item .lars-advanced-player,
.spotlight-item .lars-link-player-embed,
.spotlight-item iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    overflow: hidden;
}

.lars-link-player-embed iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 500px;
    border: 0;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lars-link-player-embed iframe {
        height: 210px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .lars-link-player-embed iframe {
        height: 320px;
    }
}

/* Constrain inline players inside modal/lightboxes */
.lars-player-template iframe,
.lars-player-template .lars-advanced-player {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
}

/* Boost position popover styling */
.submission-boost-controls .lars-boost-form {
    background: var(--lars-boost-input-bg, #0b1220) !important;
    color: var(--lars-boost-text-color, #32ff7e) !important;
    border: 1px solid var(--lars-boost-input-border, #1f2937) !important;
    font-size: var(--lars-boost-font-size, 14px);
}
.submission-boost-controls .lars-boost-form label,
.submission-boost-controls .lars-boost-form small,
.submission-boost-controls .lars-boost-status {
    color: var(--lars-boost-text-color, #32ff7e) !important;
    font-size: var(--lars-boost-font-size, 14px);
}
.submission-boost-controls .lars-boost-form input,
.submission-boost-controls .lars-boost-form button {
    border-color: var(--lars-boost-input-border, #1f2937) !important;
    color: var(--lars-boost-text-color, #32ff7e) !important;
    font-size: var(--lars-boost-font-size, 14px);
}
.submission-boost-controls .lars-boost-form button {
    background: var(--lars-boost-button-bg, #32ff7e) !important;
    color: var(--lars-boost-button-color, #0b1220) !important;
    border-color: var(--lars-boost-button-bg, #32ff7e) !important;
}
.submission-boost-controls .lars-boost-form input {
    background: var(--lars-boost-input-bg, #0b1220) !important;
}
.submission-boost-controls .lars-boost-form button:hover {
    background: var(--lars-boost-button-hover, var(--lars-boost-button-bg, #32ff7e)) !important;
    color: var(--lars-boost-button-color, #0b1220) !important;
}

.submission-header h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.submission-item.active .submission-header h4 {
    color: #007cba;
}

.submission-header .artist {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 16px;
}

/* Skip Line and Free Line Grouping Styles */
.skip-line-section,
.free-line-section {
    margin-bottom: 30px;
}

.line-header {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 12px 16px;
    background-color: transparent;
    margin-bottom: 12px;
    border-radius: 6px;
}

.skip-line-item,
.free-line-item {
    background-color: transparent;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: border-left-color 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.skip-line-item {
    border-left: 5px solid #28a745;
}

.skip-line-item:hover {
    border-left-color: #1e7e34;
    transform: translateY(-1px);
}

.free-line-item {
    border-left: 5px solid #6c757d;
}

.free-line-item:hover {
    border-left-color: #495057;
    transform: translateY(-1px);
}

.donation-amount {
    display: inline-flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.submission-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.submission-time {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    text-transform: capitalize;
    background: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
}

/* Responsive adjustments for grouping */
@media (max-width: 768px) {
    .line-header {
        font-size: 16px !important;
        padding: 8px 12px !important;
    }

    .submission-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .donation-amount {
        font-size: 11px;
    }
}

/* Spotlight List Styles */
.spotlight-list {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: var(--lars-list-font-base, 16px);
    line-height: 1.5;
}

.spotlight-list h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: var(--lars-list-font-heading, 24px);
}

.spotlight-item {
    background: #fff9c4;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.spotlight-platform-link {
    margin-top: 10px;
}

.spotlight-platform-link .platform-link {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.spotlight-platform-link .platform-link:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.spotlight-item {
    animation: spotlight-glow 2s ease-in-out infinite alternate;
    font-size: var(--lars-list-font-base, 16px);
}

.spotlight-slider-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.spotlight-slider-viewport::-webkit-scrollbar {
    display: none;
}
.spotlight-slider-track {
    display: flex;
    gap: 12px;
    padding: 6px 4px;
    align-items: stretch;
}
.spotlight-slider.single-item .spotlight-slider-track {
    justify-content: center;
}
.spotlight-slider .spotlight-item {
    flex: 0 0 300px;
    max-width: 360px;
    margin: 0;
    scroll-snap-align: center;
}
.spotlight-slider.single-item .spotlight-item {
    animation: spotlight-bob 6s ease-in-out infinite;
}

/* Ken Burns spotlight reel (centered) */
.spotlight-kenburns .spotlight-slider-viewport {
    overflow: hidden;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    -webkit-mask-image: none;
    mask-image: none;
}
.spotlight-kenburns .spotlight-slider-track {
    position: relative;
    display: block;
    padding: 0;
    height: 100%;
}
.spotlight-kenburns .spotlight-item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 0;
    max-width: min(780px, 94vw);
    width: min(780px, 94vw);
    transition: opacity 0.8s ease, transform 9s ease;
    animation: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.spotlight-kenburns .spotlight-item.is-active {
    opacity: 1;
    animation: spotlight-kenburns-pan 10s ease forwards;
    z-index: 2;
}
.spotlight-kenburns .spotlight-item.is-exiting {
    opacity: 0;
    z-index: 1;
}
.spotlight-kenburns .spotlight-item h4,
.spotlight-kenburns .spotlight-item .artist {
    text-align: center;
    width: 100%;
}
.spotlight-kenburns .spotlight-actions {
    justify-content: center;
}
.spotlight-kenburns .spotlight-slider-track::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 55%);
    pointer-events: none;
    opacity: 0.7;
}

@keyframes spotlight-kenburns-pan {
    0% { transform: translateX(-50%) scale(1) translateY(0); }
    50% { transform: translateX(-50%) scale(1.04) translateY(-6px); }
    100% { transform: translateX(-50%) scale(1.07) translateY(2px); }
}

/* Coverflow spotlight stack */
.spotlight-coverflow .spotlight-slider-viewport {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 24px 0;
    min-height: 320px;
    position: relative;
}
.spotlight-coverflow .spotlight-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1400px;
    transform-style: preserve-3d;
    min-height: 320px;
}
.spotlight-coverflow-mobile .spotlight-slider-viewport {
    overflow-x: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px 0 14px 0;
}
.spotlight-coverflow-mobile .spotlight-slider-track {
    display: flex;
    gap: 12px;
    width: max-content;
    min-height: unset;
    perspective: none;
    transform-style: flat;
}
.spotlight-coverflow-mobile .spotlight-coverflow-nav {
    display: none;
}
.spotlight-coverflow-mobile .spotlight-item {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    opacity: 1 !important;
    flex: 0 0 85vw;
    max-width: 520px;
    margin: 0;
}
.spotlight-coverflow .spotlight-coverflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e2e8f0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 5;
    outline: none;
}
.spotlight-coverflow .spotlight-coverflow-nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
    background: rgba(37, 99, 235, 0.85);
}
.spotlight-coverflow .spotlight-coverflow-nav:focus-visible,
.spotlight-coverflow .spotlight-coverflow-nav:active {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 3px;
    background: rgba(37, 99, 235, 0.95);
    box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.spotlight-coverflow .spotlight-coverflow-nav.prev {
    left: max(8px, 4%);
}
.spotlight-coverflow .spotlight-coverflow-nav.next {
    right: max(8px, 4%);
}
.spotlight-coverflow .spotlight-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(300px, 78vw);
    max-width: 360px;
    transform-origin: center center;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.25;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    backface-visibility: hidden;
}
.spotlight-coverflow .spotlight-item.is-center {
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.spotlight-mobile-stack .spotlight-slider-viewport {
    overflow-x: auto;
    padding: 12px 0 16px 0;
}
.spotlight-mobile-stack .spotlight-slider-track {
    display: flex;
    gap: 12px;
    width: max-content;
}
.spotlight-mobile-stack .spotlight-coverflow-nav {
    display: none !important;
}
.spotlight-mobile-stack .spotlight-item {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    opacity: 1 !important;
    flex: 0 0 85vw;
    max-width: 520px;
    margin: 0;
}
.spotlight-coverflow .spotlight-item h4,
.spotlight-coverflow .spotlight-item .artist {
    text-align: center;
    width: 100%;
}
.spotlight-coverflow .spotlight-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.spotlight-coverflow .spotlight-actions {
    justify-content: center;
}

@keyframes spotlight-bob {
    0% { transform: translateX(0px); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(0px); }
    75% { transform: translateX(8px); }
    100% { transform: translateX(0px); }
}

.spotlight-item h4 {
    font-size: var(--lars-list-font-heading, 20px);
}

.spotlight-item .artist {
    font-size: var(--lars-list-font-base, 16px);
}

.spotlight-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.spotlight-actions .button,
.spotlight-actions .lars-open-player-btn {
    font-size: var(--lars-list-font-base, 16px);
    padding: 8px 12px;
}

@media (max-width: 768px) {
    .spotlight-slider .spotlight-item {
        flex: 0 0 280px;
    }
}

.highlight-spot {
    animation: pulse-spot 1s ease-in-out 2;
}

@keyframes pulse-spot {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@keyframes spotlight-glow {
    from {
        box-shadow: 0 0 5px #ffd700;
    }
    to {
        box-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .audio-player-container,
    .submission-list,
    .spotlight-list {
        padding: 10px;
    }

    .now-playing-section,
    .playlist-section {
        padding: 15px;
    }

    .embedded-player iframe {
        height: 150px;
    }

    .now-playing-section h3 {
        font-size: 20px;
    }

    .song-info h4 {
        font-size: 18px;
    }

    /* Playlist controls responsive */
    .playlist-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .playlist-platform-link {
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 0 !important;
    }

    /* Spotlight platform link responsive */
    .spotlight-platform-link .platform-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* Make YouTube embeds more mobile-friendly */
    .embedded-player iframe[src*="youtube"] {
        height: 200px;

    }

    /* Make Spotify embeds more compact on mobile */
    .embedded-player iframe[src*="spotify"] {
        height: 152px;
    }

    .content-wrapper {
        padding: 10px;
    }

    .now-playing-section,
    .playlist-section {
        padding: 15px;
    }

    .playlist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .playlist-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .embedded-player iframe {
        height: 200px;
    }
}

/* Enhanced embedded player responsiveness */
@media (max-width: 480px) {
    .embedded-player iframe {
        height: 150px;
    }

    .now-playing-section h3 {
        font-size: 20px;
    }

    .song-info h4 {
        font-size: 18px;
    }

    /* Make YouTube embeds more mobile-friendly */
    .embedded-player iframe[src*="youtube"] {
        height: 200px;
    }

    /* Make Spotify embeds more compact on mobile */
    .embedded-player iframe[src*="spotify"] {
        height: 152px;
    }
}

/* Additional embedded player enhancements */
.embedded-player {
    position: relative;
    overflow: hidden;
}

.embedded-player::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%);
    pointer-events: none;
    z-index: 1;
}

/* Platform-specific styling */
.embedded-player iframe[src*="youtube"] {
    border-radius: 8px;
}

.embedded-player iframe[src*="spotify"] {
    border-radius: 12px;
}

.embedded-player iframe[src*="soundcloud"] {
    border-radius: 6px;
}

/* Loading state for embedded players */
.embedded-player.loading {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.embedded-player.loading::after {
    content: '🎵 Loading player...';
    color: #666;
    font-size: 16px;
}

/* Audio Download Protection */
audio::-webkit-media-controls-download-button {
    display: none;
}

audio::-webkit-media-controls-enclosure {
    overflow: hidden;
}

audio::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

/* Disable right-click context menu on audio elements */
audio {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Additional protection styling */
.audio-controls {
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.audio-controls::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
    z-index: 1;
}

/* Prevent text selection on audio containers */
.now-playing-section,
.playlist-section {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide audio source URLs from easy inspection */
.audio-controls audio {
    position: relative;
}

.audio-controls audio::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: transparent;
    z-index: -1;
}

/* Additional visual protection */
.main-audio-player {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Submission Message Styles */
.submission-message {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}
.submission-message.submission-message--compact {
    margin: 12px 0;
    padding: 10px 12px;
}

.submission-message.success {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #e2e8f0;
}

.submission-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.submission-message h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
}

.submission-message p {
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.submission-message button {
    transition: all 0.3s ease;
}

.submission-message button:hover {
    background: #005a87 !important;
    transform: translateY(-1px);
}

.submission-success-message {
    text-align: center;
}

.submission-success-message h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
}

.submission-success-message p {
    margin: 0 0 12px 0;
    line-height: 1.4;
}
.submission-success-message.submission-success-message--compact p {
    margin: 0;
}

.submission-success-message .submit-another-button {
    background-color: var(--lars-form-button-background, #0073aa);
    color: var(--lars-form-button-font-color, #ffffff);
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submission-success-message .submit-another-button:hover {
    background-color: var(--lars-form-button-hover-background, #005a87);
    transform: translateY(-1px);
}

.payment-links .payment-link {
    flex: 1 1 180px;
    min-width: 180px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

/* List player modal */
.lars-list-player-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
}

.lars-list-player-backdrop {
    display: none;
}

.lars-list-player-wrapper {
    position: relative;
    width: 96vw;
    height: 96vh;
    background: #0f172a;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
    padding: 12px;
    color: #fff;
    overflow: auto;
}

.lars-list-player-close {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}

.lars-list-player-content {
    margin-top: 52px;
}

/* End of CSS file */

/* Venue Card */
.lars-venue-card {
    position: relative;
    perspective: 1200px;
    margin: 14px 0;
    cursor: pointer;
    border-radius: 14px;
}
.lars-venue-card-inner {
    position: relative;
    width: 100%;
    min-height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.2s ease;
}
.lars-venue-card.is-flipped .lars-venue-card-inner {
    transform: rotateY(180deg);
}
.lars-venue-card-face {
    position: relative;
    height: auto;
    min-height: 200px;
    backface-visibility: hidden;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(12, 12, 14, 0.98), rgba(12, 12, 14, 0.88));
    color: #e2e8f0;
    border: 1px dashed rgba(59, 130, 246, 0.7);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.3);
    font-size: var(--lars-venue-card-font-size, 16px);
    overflow: hidden;
}
.lars-venue-card-face.lars-venue-card-front {
    z-index: 2;
}
.lars-venue-card-face.lars-venue-card-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 12, 18, 0.95), rgba(9, 12, 16, 0.88));
    border: 1px dashed rgba(59, 130, 246, 0.7);
    overflow-y: auto;
}
.lars-venue-card:hover .lars-venue-card-inner {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
}
.lars-venue-card:focus-visible .lars-venue-card-inner {
    outline: 2px solid var(--lars-venue-card-accent, #38bdf8);
    outline-offset: 4px;
}
.lars-venue-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.lars-venue-card-title {
    margin: 0 0 6px 0;
    color: var(--lars-venue-card-heading, #ffffff);
    font-size: 1.1em;
}
.lars-venue-card-desc {
    margin: 0 0 10px 0;
    color: inherit;
    line-height: 1.5;
}
.lars-venue-card-embed iframe,
.lars-venue-card-embed video {
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.lars-venue-card-embed {
    border-left: 3px solid var(--lars-venue-card-accent, #38bdf8);
    padding-left: 10px;
}
.lars-venue-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.lars-venue-card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.lars-venue-card-media {
    max-width: 160px;
    width: 100%;
}
.lars-venue-card-media img {
    max-height: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.lars-venue-card-back-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 32px;
}
.lars-venue-card-back-close {
    background: transparent;
    border: none;
    color: transparent;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: default;
    visibility: hidden;
}
.lars-venue-card-back-close:hover {
    background: transparent;
}
.lars-venue-links-title {
    margin: 0;
    font-size: 16px;
    color: var(--lars-venue-card-heading, #ffffff);
    display: inline-block;
    margin-bottom: 4px;
    visibility: hidden;
}
.lars-venue-links-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    width: 100%;
    justify-items: center;
}
.lars-venue-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    color: #e2e8f0;
    border: 1px solid rgba(56, 189, 248, 0.2);
    text-decoration: none;
    transition: transform 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
    word-break: break-word;
    white-space: normal;
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.35);
}
.lars-venue-link-btn:hover {
    transform: translateY(-1px);
    border-color: var(--lars-venue-card-accent, #38bdf8);
    background: rgba(56, 189, 248, 0.18);
    color: #fff;
}
@media (max-width: 640px) {
    .lars-venue-card-face {
        grid-template-columns: 1fr;
        padding: 14px;
        justify-items: center;
    }
    .lars-venue-card-media {
        max-width: none;
    }
    .lars-venue-card-inner {
        min-height: 220px;
    }
    .lars-venue-links-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .lars-venue-card-media img {
        max-height: 120px;
    }
}
.lars-submit-styled .lars-inline-cta,
.lars-inline-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(120deg, #2563eb, #1d4ed8);
    color: #fff;
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    cursor: pointer;
}
.lars-inline-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.lars-inline-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    color: #0f172a;
    border: 1px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
}
.lars-submit-styled .lars-inline-ghost {
    color: #0f172a;
}
.submission-form-container .submission-message .lars-inline-ghost,
.submission-form-container .submission-message .lars-inline-cta {
    margin-top: 6px;
}
.lars-inline-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.55);
}

/* Artist profile page */
.artist-profile-shell {
    max-width: 1040px;
    margin: 32px auto;
    padding: 16px;
}
.artist-profile-card {
    background: linear-gradient(180deg, #0b1220 0%, #0e1729 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.35);
    color: #e2e8f0;
}
.artist-profile-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.artist-profile-eyebrow {
    margin: 0 0 4px 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
    font-weight: 700;
}
.artist-profile-title {
    margin: 0 0 6px 0;
    font-size: 28px;
    color: #e0f2fe;
}
.artist-profile-subtitle {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
    max-width: 720px;
}
.artist-profile-close {
    background: #ef4444;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(239,68,68,0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    align-self: flex-start;
    margin-left: auto;
}
.artist-profile-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(239,68,68,0.5);
}
.artist-profile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.artist-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px 16px;
}
.artist-profile-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 16px;
    align-items: start;
    grid-column: 1 / -1;
}
.artist-profile-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.artist-profile-field--full {
    grid-column: 1 / -1;
}
.artist-profile-row-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 16px;
    align-items: end;
}
.artist-profile-field label {
    font-weight: 700;
    font-size: 14px;
    color: #bfdbfe;
}
.field-hint {
    font-weight: 600;
    font-size: 12px;
    color: #a5b4fc;
    margin-left: 6px;
}
.artist-profile-field input,
.artist-profile-field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-size: 14px;
}
.artist-profile-field textarea {
    min-height: 140px;
    resize: vertical;
}
.artist-profile-field input:focus,
.artist-profile-field textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.25);
    background: rgba(15, 23, 42, 0.8);
}
.artist-profile-avatar .avatar-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.artist-profile-avatar .avatar-preview-wrap {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-profile-avatar img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artist-profile-avatar .avatar-actions small {
    color: #cbd5e1;
    display: block;
    margin-top: 4px;
}
.artist-profile-hero-upload .hero-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.artist-profile-hero-upload .hero-preview-wrap {
    width: 260px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}
.artist-profile-hero-upload .hero-preview-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.artist-profile-hero-upload .hero-actions small {
    color: #cbd5e1;
    display: block;
    margin-top: 4px;
}
.artist-profile-message {
    min-height: 18px;
    font-size: 13px;
    color: #f87171;
}
.artist-profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.artist-profile-actions--bottom {
    justify-content: flex-end;
}

.artist-profile-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    align-items: end;
}

/* Artist cards (cover overlay) */
.artist-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    width: 100%;
}
.artist-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
    display: flex;
    align-items: flex-end;
}
.artist-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.6) 100%);
}
.artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 55%);
}
.artist-card__content {
    position: relative;
    z-index: 2;
    padding: 18px 16px 20px 16px;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.artist-card__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.artist-card__title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.artist-card__tagline {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.92);
}

@media (max-width: 640px) {
    .artist-profile-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .artist-profile-close {
        align-self: flex-end;
    }
    .artist-profile-avatar .avatar-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .artist-profile-grid {
        grid-template-columns: 1fr;
    }
    .artist-profile-hero {
        grid-template-columns: 1fr;
    }
    .artist-profile-row-two {
        grid-template-columns: 1fr;
    }
}
