/* ============================================
   Northern Soul Venues - Complete Styles
   Dark theme with red accents
   ============================================ */

:root {
    --nsv-bg: #0a0a0a;
    --nsv-bg-light: #141414;
    --nsv-bg-card: #1a1a1a;
    --nsv-red: #e63946;
    --nsv-red-dark: #c1121f;
    --nsv-gold: #d4a574;
    --nsv-gold-light: #e8c9a0;
    --nsv-text: #e0e0e0;
    --nsv-text-muted: #888888;
    --nsv-text-dark: #555555;
    --nsv-border: #2a2a2a;
    --nsv-border-light: #333333;
    --nsv-green: #28a745;
    --nsv-yellow: #ffc107;
    --nsv-white: #ffffff;
    --nsv-radius: 8px;
    --nsv-radius-lg: 12px;
    --nsv-shadow: 0 4px 20px rgba(0,0,0,0.4);
    --nsv-shadow-red: 0 4px 30px rgba(230,57,70,0.2);
    --nsv-transition: all 0.3s ease;
}

/* ============================================
   BASE & CONTAINER
   ============================================ */
.nsv-main {
    background: var(--nsv-bg);
    color: var(--nsv-text);
    min-height: 100vh;
}

.nsv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HUB PAGE - HERO
   ============================================ */
.nsv-hub-hero {
    background: linear-gradient(135deg, var(--nsv-bg) 0%, var(--nsv-bg-light) 100%);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 3px solid var(--nsv-red);
    position: relative;
    overflow: hidden;
}

.nsv-hub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e63946' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.nsv-hub-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--nsv-white);
    margin: 0 0 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
}

.nsv-hub-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--nsv-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.nsv-hub-subtitle {
    font-size: 1.4rem;
    color: var(--nsv-gold);
    margin: 0 0 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nsv-hub-intro {
    font-size: 1.1rem;
    color: var(--nsv-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FILTER BAR
   ============================================ */
.nsv-filter-bar {
    background: var(--nsv-bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--nsv-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nsv-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nsv-filter-btn {
    background: transparent;
    border: 1px solid var(--nsv-border-light);
    color: var(--nsv-text-muted);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--nsv-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsv-filter-btn:hover,
.nsv-filter-btn.nsv-filter-active {
    background: var(--nsv-red);
    border-color: var(--nsv-red);
    color: var(--nsv-white);
    box-shadow: 0 2px 15px rgba(230,57,70,0.3);
}

/* ============================================
   VENUE CARDS
   ============================================ */
.nsv-venues-grid-section {
    padding: 60px 0;
}

.nsv-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.nsv-venue-card {
    background: var(--nsv-bg-card);
    border-radius: var(--nsv-radius-lg);
    overflow: hidden;
    border: 1px solid var(--nsv-border);
    transition: var(--nsv-transition);
    position: relative;
}

.nsv-venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--nsv-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nsv-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nsv-shadow-red);
    border-color: var(--nsv-red);
}

.nsv-venue-card:hover::before {
    transform: scaleX(1);
}

.nsv-venue-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--nsv-bg-light);
    border-bottom: 1px solid var(--nsv-border);
}

.nsv-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsv-venue-era {
    color: var(--nsv-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.nsv-venue-card-body {
    padding: 25px 20px;
}

.nsv-venue-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--nsv-white);
    margin: 0 0 8px;
    line-height: 1.3;
}

.nsv-venue-subtitle {
    font-size: 0.95rem;
    color: var(--nsv-gold);
    margin: 0 0 15px;
    font-style: italic;
}

.nsv-venue-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--nsv-text-muted);
    font-size: 0.9rem;
    margin: 0 0 20px;
}

.nsv-venue-location svg {
    color: var(--nsv-red);
    flex-shrink: 0;
}

.nsv-venue-anthem {
    margin-bottom: 20px;
}

.nsv-venue-card-footer {
    padding: 0 20px 20px;
}

.nsv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--nsv-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--nsv-transition);
    cursor: pointer;
    border: none;
}

.nsv-btn-primary {
    background: var(--nsv-red);
    color: var(--nsv-white);
    width: 100%;
}

.nsv-btn-primary:hover {
    background: var(--nsv-red-dark);
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
    transform: translateY(-2px);
}

/* ============================================
   RECORD CARD (Discogs)
   ============================================ */
.nsv-record-card {
    display: flex;
    gap: 15px;
    background: var(--nsv-bg-light);
    border-radius: var(--nsv-radius);
    padding: 15px;
    border: 1px solid var(--nsv-border);
}

.nsv-record-cover {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--nsv-bg);
}

.nsv-record-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nsv-record-card:hover .nsv-record-cover img {
    transform: scale(1.05);
}

.nsv-record-placeholder-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nsv-bg-card), var(--nsv-bg-light));
    color: var(--nsv-text-muted);
    font-size: 1.2rem;
    font-weight: 700;
}

.nsv-record-info {
    flex: 1;
    min-width: 0;
}

.nsv-record-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nsv-white);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nsv-record-artist {
    font-size: 0.85rem;
    color: var(--nsv-text-muted);
    margin: 0 0 8px;
}

.nsv-record-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nsv-record-meta span {
    font-size: 0.75rem;
    color: var(--nsv-text-dark);
    background: var(--nsv-bg);
    padding: 2px 8px;
    border-radius: 4px;
}

.nsv-record-year {
    color: var(--nsv-gold) !important;
}

.nsv-record-discogs-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--nsv-red);
    text-decoration: none;
    transition: color 0.2s;
}

.nsv-record-discogs-link:hover {
    color: var(--nsv-gold);
}

/* ============================================
   TIMELINE
   ============================================ */
.nsv-timeline-section {
    padding: 60px 0;
    background: var(--nsv-bg-light);
    border-top: 1px solid var(--nsv-border);
}

.nsv-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nsv-white);
    margin: 0 0 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nsv-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--nsv-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.nsv-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.nsv-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--nsv-border-light);
    transform: translateX(-50%);
}

.nsv-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.nsv-timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.nsv-timeline-item:nth-child(odd) .nsv-timeline-content {
    margin-right: 40px;
    margin-left: 0;
}

.nsv-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.nsv-timeline-item:nth-child(even) .nsv-timeline-content {
    margin-left: 40px;
    margin-right: 0;
}

.nsv-timeline-year {
    width: 80px;
    height: 80px;
    background: var(--nsv-red);
    color: var(--nsv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--nsv-bg-light), 0 0 0 10px var(--nsv-border);
}

.nsv-timeline-content {
    flex: 1;
    background: var(--nsv-bg-card);
    padding: 20px;
    border-radius: var(--nsv-radius);
    border: 1px solid var(--nsv-border);
}

.nsv-timeline-content h4 {
    font-size: 1.1rem;
    color: var(--nsv-gold);
    margin: 0 0 5px;
}

.nsv-timeline-content p {
    font-size: 0.9rem;
    color: var(--nsv-text-muted);
    margin: 0;
}

/* ============================================
   NOW PLAYING WIDGET
   ============================================ */
.nsv-now-playing-section {
    padding: 60px 0;
    text-align: center;
}

.nsv-now-playing {
    background: var(--nsv-bg-card);
    border-radius: var(--nsv-radius-lg);
    border: 1px solid var(--nsv-border);
    overflow: hidden;
}

/* Sidebar Style */
.nsv-now-playing-sidebar {
    padding: 20px;
    max-width: 300px;
}

.nsv-now-playing-sidebar .nsv-now-playing-header {
    margin-bottom: 15px;
}

.nsv-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nsv-red);
}

.nsv-live-pulse {
    width: 8px;
    height: 8px;
    background: var(--nsv-red);
    border-radius: 50%;
    animation: nsv-pulse 1.5s infinite;
}

@keyframes nsv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.nsv-now-playing-body {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nsv-now-playing-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.nsv-thumb-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--nsv-bg), var(--nsv-bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsv-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nsv-now-playing-details {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.nsv-now-playing-track {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nsv-white);
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nsv-now-playing-artist {
    font-size: 0.85rem;
    color: var(--nsv-text-muted);
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nsv-now-playing-year {
    font-size: 0.8rem;
    color: var(--nsv-gold);
    margin: 0;
}

/* Full Style */
.nsv-now-playing-full {
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.nsv-now-playing-full .nsv-now-playing-header {
    margin-bottom: 25px;
}

.nsv-now-playing-full .nsv-live-indicator {
    font-size: 1rem;
}

.nsv-now-playing-cover {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: var(--nsv-radius-lg);
    overflow: hidden;
    box-shadow: var(--nsv-shadow);
    position: relative;
}

.nsv-now-playing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nsv-vinyl-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: nsv-spin 8s linear infinite;
}

.nsv-vinyl-placeholder:hover {
    animation-play-state: paused;
}

@keyframes nsv-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nsv-vinyl-grooves {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 2px solid var(--nsv-border-light);
    border-radius: 50%;
}

.nsv-vinyl-grooves::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 1px solid var(--nsv-border);
    border-radius: 50%;
}

.nsv-vinyl-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nsv-red);
    z-index: 2;
}

.nsv-now-playing-full .nsv-track-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nsv-white);
    margin: 0 0 8px;
}

.nsv-now-playing-full .nsv-track-artist {
    font-size: 1.1rem;
    color: var(--nsv-text-muted);
    margin: 0 0 15px;
}

.nsv-track-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.nsv-track-meta span {
    font-size: 0.9rem;
    color: var(--nsv-gold);
    background: var(--nsv-bg-light);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Compact Style */
.nsv-now-playing-compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--nsv-bg-card);
    border-radius: 30px;
    border: 1px solid var(--nsv-border);
}

.nsv-live-dot {
    width: 8px;
    height: 8px;
    background: var(--nsv-red);
    border-radius: 50%;
    animation: nsv-pulse 1.5s infinite;
    flex-shrink: 0;
}

.nsv-track-name {
    font-size: 0.9rem;
    color: var(--nsv-text);
    white-space: nowrap;
}

/* Audio Visualizer */
.nsv-audio-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 30px;
    margin-top: 15px;
}

.nsv-audio-visualizer span {
    width: 4px;
    background: var(--nsv-red);
    border-radius: 2px;
    animation: nsv-bounce 1s ease-in-out infinite;
}

.nsv-audio-visualizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.nsv-audio-visualizer span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.nsv-audio-visualizer span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.nsv-audio-visualizer span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.nsv-audio-visualizer span:nth-child(5) { height: 60%; animation-delay: 0.4s; }

@keyframes nsv-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* ============================================
   SINGLE VENUE PAGE
   ============================================ */
.nsv-venue-single {
    background: var(--nsv-bg);
}

/* Hero */
.nsv-venue-hero {
    background: linear-gradient(135deg, var(--nsv-bg-light) 0%, var(--nsv-bg) 100%);
    padding: 80px 0 60px;
    position: relative;
    border-bottom: 3px solid var(--nsv-red);
    overflow: hidden;
}

.nsv-venue-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e63946' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.nsv-venue-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.nsv-venue-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--nsv-white);
    margin: 15px 0 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nsv-venue-hero-subtitle {
    font-size: 1.3rem;
    color: var(--nsv-gold);
    margin: 0 0 25px;
    font-style: italic;
}

.nsv-venue-hero-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nsv-venue-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nsv-text-muted);
    font-size: 0.95rem;
}

.nsv-venue-meta-item svg {
    color: var(--nsv-red);
}

/* Content Grid */
.nsv-venue-content-section {
    padding: 60px 0;
}

.nsv-venue-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

@media (max-width: 900px) {
    .nsv-venue-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Quick Facts */
.nsv-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.nsv-quick-fact {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius);
    padding: 20px;
    text-align: center;
    transition: var(--nsv-transition);
}

.nsv-quick-fact:hover {
    border-color: var(--nsv-red);
    transform: translateY(-3px);
}

.nsv-quick-fact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nsv-text-muted);
    margin-bottom: 8px;
}

.nsv-quick-fact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nsv-white);
}

/* Text Content */
.nsv-venue-text-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nsv-text);
    margin-bottom: 40px;
}

.nsv-venue-text-content h2 {
    font-size: 1.5rem;
    color: var(--nsv-gold);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--nsv-border);
}

.nsv-venue-text-content h3 {
    font-size: 1.2rem;
    color: var(--nsv-white);
    margin: 25px 0 10px;
}

.nsv-venue-text-content p {
    margin: 0 0 20px;
}

.nsv-venue-text-content blockquote {
    border-left: 3px solid var(--nsv-red);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--nsv-gold);
    font-style: italic;
}

.nsv-venue-text-content ul,
.nsv-venue-text-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.nsv-venue-text-content li {
    margin-bottom: 8px;
}

/* Anthem Section */
.nsv-anthem-section {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius-lg);
    padding: 30px;
    margin-bottom: 40px;
}

.nsv-anthem-intro {
    color: var(--nsv-text-muted);
    margin: -10px 0 20px;
    font-style: italic;
}

/* DJs Section */
.nsv-djs-section {
    margin-bottom: 40px;
}

.nsv-djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.nsv-dj-card {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius);
    padding: 20px;
    text-align: center;
    transition: var(--nsv-transition);
}

.nsv-dj-card:hover {
    border-color: var(--nsv-gold);
    transform: translateY(-3px);
}

.nsv-dj-avatar {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: var(--nsv-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsv-text-muted);
}

.nsv-dj-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nsv-white);
}

/* Share Section */
.nsv-share-section {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius-lg);
    padding: 30px;
    margin-bottom: 40px;
}

.nsv-share-section h3 {
    font-size: 1.1rem;
    color: var(--nsv-white);
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sidebar */
.nsv-venue-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.nsv-sidebar-widget {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius-lg);
    padding: 25px;
    margin-bottom: 25px;
}

.nsv-sidebar-widget h3 {
    font-size: 1rem;
    color: var(--nsv-gold);
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--nsv-border);
}

.nsv-sidebar-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsv-sidebar-facts li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--nsv-border);
    font-size: 0.9rem;
}

.nsv-sidebar-facts li:last-child {
    border-bottom: none;
}

.nsv-sidebar-facts li strong {
    color: var(--nsv-text-muted);
}

.nsv-sidebar-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsv-sidebar-related li {
    padding: 10px 0;
    border-bottom: 1px solid var(--nsv-border);
}

.nsv-sidebar-related li:last-child {
    border-bottom: none;
}

.nsv-sidebar-related a {
    color: var(--nsv-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nsv-sidebar-related a:hover {
    color: var(--nsv-red);
}

.nsv-related-era {
    display: block;
    font-size: 0.8rem;
    color: var(--nsv-text-muted);
    margin-top: 2px;
}

/* Navigation */
.nsv-venue-nav {
    background: var(--nsv-bg-light);
    border-top: 1px solid var(--nsv-border);
    padding: 30px 0;
}

.nsv-venue-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nsv-venue-nav-prev,
.nsv-venue-nav-next,
.nsv-venue-nav-hub {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: var(--nsv-radius);
    transition: var(--nsv-transition);
    min-width: 200px;
}

.nsv-venue-nav-prev,
.nsv-venue-nav-next {
    background: var(--nsv-bg-card);
    border: 1px solid var(--nsv-border);
    color: var(--nsv-text);
}

.nsv-venue-nav-prev:hover,
.nsv-venue-nav-next:hover {
    border-color: var(--nsv-red);
    background: var(--nsv-bg-light);
}

.nsv-venue-nav-hub {
    background: var(--nsv-red);
    color: var(--nsv-white);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: auto;
}

.nsv-venue-nav-hub:hover {
    background: var(--nsv-red-dark);
}

.nsv-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nsv-text-muted);
    margin-bottom: 5px;
}

.nsv-nav-venue {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nsv-white);
}

.nsv-venue-nav-prev .nsv-nav-venue::before {
    content: '← ';
}

.nsv-venue-nav-next .nsv-nav-venue::after {
    content: ' →';
}

/* ============================================
   SHARE BUTTONS
   ============================================ */
.nsv-share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.nsv-share-label {
    font-size: 0.85rem;
    color: var(--nsv-text-muted);
    margin-right: 5px;
}

.nsv-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--nsv-bg-light);
    border: 1px solid var(--nsv-border);
    border-radius: var(--nsv-radius);
    color: var(--nsv-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--nsv-transition);
    cursor: pointer;
}

.nsv-share-btn:hover {
    background: var(--hover-color, var(--nsv-red));
    border-color: var(--hover-color, var(--nsv-red));
    color: var(--nsv-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nsv-share-btn svg {
    flex-shrink: 0;
}

/* Vertical */
.nsv-share-vertical {
    flex-direction: column;
    align-items: stretch;
}

.nsv-share-vertical .nsv-share-btn {
    justify-content: flex-start;
}

/* Minimal */
.nsv-share-minimal .nsv-share-label,
.nsv-share-minimal .nsv-share-btn-label {
    display: none;
}

.nsv-share-minimal .nsv-share-btn {
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
}

/* Floating (mobile sticky) */
.nsv-share-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nsv-bg-card);
    border-top: 1px solid var(--nsv-border);
    padding: 10px 15px;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.nsv-share-floating .nsv-share-label {
    display: none;
}

.nsv-share-floating .nsv-share-btn {
    padding: 8px 12px;
}

/* Copy button copied state */
.nsv-share-copy.nsv-copied {
    background: var(--nsv-green) !important;
    border-color: var(--nsv-green) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nsv-hub-hero {
        padding: 50px 0 40px;
    }

    .nsv-hub-title {
        font-size: 2rem;
    }

    .nsv-venues-grid {
        grid-template-columns: 1fr;
    }

    .nsv-timeline::before {
        left: 30px;
    }

    .nsv-timeline-item,
    .nsv-timeline-item:nth-child(odd),
    .nsv-timeline-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }

    .nsv-timeline-item .nsv-timeline-content,
    .nsv-timeline-item:nth-child(odd) .nsv-timeline-content,
    .nsv-timeline-item:nth-child(even) .nsv-timeline-content {
        margin-left: 20px;
        margin-right: 0;
    }

    .nsv-timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .nsv-venue-hero {
        padding: 50px 0 40px;
    }

    .nsv-venue-hero-meta {
        gap: 15px;
    }

    .nsv-venue-content-grid {
        grid-template-columns: 1fr;
    }

    .nsv-venue-sidebar {
        position: static;
        order: -1;
    }

    .nsv-quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .nsv-djs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nsv-venue-nav-links {
        flex-direction: column;
    }

    .nsv-venue-nav-prev,
    .nsv-venue-nav-next {
        min-width: auto;
        width: 100%;
    }

    .nsv-share-buttons {
        gap: 8px;
    }

    .nsv-share-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nsv-filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .nsv-record-card {
        flex-direction: column;
    }

    .nsv-record-cover {
        width: 100%;
        height: 150px;
    }

    .nsv-now-playing-full {
        padding: 25px;
    }

    .nsv-now-playing-cover {
        width: 180px;
        height: 180px;
    }
}
