.featured-shows {
    padding: var(--section-padding);
    position: relative;
}
.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.show-card {
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(36, 86, 214, 0.06) 0%, transparent 60%),
        var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}
.show-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233, 185, 73, 0.5);
    box-shadow: var(--shadow-lg);
}
.show-card-art {
    position: relative;
    height: 172px;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(233, 185, 73, 0.18) 0%, transparent 55%),
        linear-gradient(165deg, #141a26 0%, #0a0d14 70%);
}
.show-card-art.is-default {
    background:
        linear-gradient(180deg, rgba(8, 8, 12, 0.2) 0%, rgba(8, 8, 12, 0.5) 100%),
        url('/showimages/bg.webp') center / cover no-repeat,
        linear-gradient(165deg, #141a26 0%, #0a0d14 70%);
}
html.rc-light .show-card-art.is-default {
    background:
        linear-gradient(180deg, rgba(20, 26, 38, 0.05) 0%, rgba(20, 26, 38, 0.28) 100%),
        url('/lightmoderivercats.webp') center / cover no-repeat,
        linear-gradient(165deg, #dfe7f2 0%, #c6d3e6 70%);
}
.show-art-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.show-card:hover .show-art-img {
    transform: scale(1.06);
}
.show-card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 10, 0.1) 0%, rgba(5, 5, 9, 0.55) 100%);
    pointer-events: none;
}
.show-date {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-warm);
    padding: 9px 14px;
    border-radius: 12px;
    min-width: 56px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    line-height: 1;
}
.show-card-art .show-date {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}
.show-date .day {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.show-date .month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 2px;
}
.show-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 22px 22px;
    flex: 1;
}
.show-info h3,
.show-info .show-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    -webkit-background-clip: initial;
}
.show-info .venue {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    text-shadow: none;
}
.show-info .time {
    color: var(--text-secondary);
    font-size: 13px;
    text-shadow: none;
}
.show-info .time i {
    color: var(--accent-gold);
    margin-right: 4px;
}
.time-and-links {
    margin-top: auto;
    padding-top: 14px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.show-more-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 999px;
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.show-more-info:hover {
    background: var(--gradient-warm);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(233, 185, 73, 0.3);
}
.show-more-info::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
}
.show-more-info i {
    font-size: 10px;
}
.show-link {
    color: var(--accent-gold);
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.show-link:hover {
    color: var(--accent-gold-light);
    transform: scale(1.15);
}
.show-card.book-us {
    background: linear-gradient(165deg, rgba(233, 185, 73, 0.12) 0%, var(--card-bg) 60%);
    border-color: rgba(233, 185, 73, 0.35);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 22px;
}
.show-card.book-us .show-date {
    margin-bottom: 16px;
}
.show-card.book-us .show-date .day {
    font-size: 20px;
}
.show-card.book-us .show-info {
    align-items: center;
    text-align: center;
    padding: 0;
}
.show-card.book-us .time-and-links {
    justify-content: center;
    margin-top: 12px;
}
.show-card:not(.book-us) .time-and-links {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: auto;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}
.show-card:not(.book-us) .time-and-links .time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(6, 8, 14, 0.72);
    border: 1px solid rgba(233, 185, 73, 0.28);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.show-card:not(.book-us) .time-and-links .time i {
    color: var(--accent-gold);
    margin-right: 0;
}
@media (min-width: 1024px) {
    .featured-shows .section-header {
        margin-bottom: 20px;
    }
    .shows-grid {
        gap: 20px;
    }
    .show-card-art {
        height: 126px;
    }
    .show-info {
        padding: 13px 18px 15px;
        gap: 4px;
    }
    .show-info h3,
    .show-info .show-title {
        font-size: 18px;
    }
    .time-and-links {
        padding-top: 10px;
    }
    .show-card.book-us {
        padding: 22px;
    }
}
@media (min-width: 641px) and (max-width: 1024px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.past-shows-section {
    margin-top: 44px;
}
.past-shows-toggle {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 15px 22px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.past-shows-toggle:hover {
    border-color: rgba(233, 185, 73, 0.4);
    background: var(--card-bg-hover);
}
.past-shows-toggle.active {
    border-radius: 14px 14px 0 0;
    border-color: rgba(233, 185, 73, 0.28);
    background: var(--card-bg);
}
.past-toggle-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.past-toggle-left i {
    color: var(--accent-gold);
    font-size: 16px;
}
.past-toggle-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.past-toggle-chevron {
    color: var(--accent-gold);
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.past-shows-toggle.active .past-toggle-chevron {
    transform: rotate(180deg);
}
.past-shows-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
    background:
        radial-gradient(120% 60% at 50% 0%, rgba(36, 86, 214, 0.06) 0%, transparent 60%),
        var(--card-bg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 0 20px;
}
.past-shows-content.open {
    max-height: 760px;
    padding: 20px 20px 22px;
    overflow-y: auto;
}
.past-shows-filters {
    display: flex;
    gap: 2px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 4px;
    background: rgba(233, 185, 73, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 999px;
}
.past-filter {
    padding: 6px 16px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}
.past-filter:hover {
    color: var(--accent-gold);
}
.past-filter.active {
    background: var(--gradient-warm);
    color: #fff;
    box-shadow: 0 2px 10px rgba(233, 185, 73, 0.25);
}
.past-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
    gap: 8px;
    align-content: start;
}
.past-show-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(233, 185, 73, 0.02);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.past-show-item.hidden {
    display: none;
}
.past-show-item:hover {
    background: rgba(233, 185, 73, 0.08);
    border-color: rgba(233, 185, 73, 0.32);
}
.past-venue.blog-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}
.past-item-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
.past-show-item:hover .past-item-dot {
    opacity: 1;
    box-shadow: 0 0 8px rgba(233, 185, 73, 0.5);
}
.past-date {
    color: var(--accent-gold);
    font-size: 11.5px;
    font-weight: 700;
    min-width: 78px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.past-venue {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    flex: 1;
    transition: color 0.2s ease;
}
.past-show-item:hover .past-venue {
    color: var(--text-primary);
}
.past-item-arrow {
    color: rgba(233, 185, 73, 0.3);
    font-size: 10px;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}
.past-show-item:hover .past-item-arrow {
    color: var(--accent-gold);
    transform: translateX(2px);
}
@media (max-width: 640px) {
    .past-shows-grid {
        grid-template-columns: 1fr;
    }
    .past-shows-content.open {
        max-height: 1400px;
    }
    .past-date {
        min-width: 74px;
        font-size: 11px;
    }
    .past-venue {
        font-size: 12.5px;
    }
}

.show-link:hover {
    color: var(--light-blue);
    transform: scale(1.2) rotate(5deg);
}

.show-card.book-us {
    border: 1px solid rgba(233, 185, 73, 0.35);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 24px;
    min-height: 0;
}

.show-card.book-us .show-info {
    padding: 0;
    flex: 1;
    margin-top: 0;
}

.show-card.book-us .show-date {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
}

.show-card.book-us .show-date .day i {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
}

.show-card.book-us .show-date .month {
    color: rgba(0, 0, 0, 0.6);
}

.show-card.book-us:hover {
    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(233, 185, 73, 0.15);
    border-color: var(--accent-gold-light);
}

.show-card > * {
    position: relative;
    z-index: 2;
}

.time-and-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0.5rem 0;
}

.time-and-links .time {
    margin: 0;
}

.show-links {
    display: flex;
    gap: 0.5rem;
}

.show-link,
.maps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(233, 185, 73, 0.1);
    border: 1px solid rgba(233, 185, 73, 0.2);
    border-radius: 50%;
    color: var(--accent-gold-light);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.show-link:hover,
.maps-link:hover {
    background: rgba(233, 185, 73, 0.25);
    transform: scale(1.1);
    color: var(--accent-gold);
}

.maps-link {
    background: rgba(233, 185, 73, 0.15);
    border-color: rgba(233, 185, 73, 0.3);
}

.show-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 8, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.show-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.show-modal {
    background: rgba(14, 14, 18, 0.97);
    border: 1px solid rgba(233, 185, 73, 0.25);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(233, 185, 73, 0.08);
    position: relative;
}

.show-modal-backdrop.active .show-modal {
    transform: scale(1) translateY(0);
}

.show-modal::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(233, 185, 73, 0.04) 45%,
        rgba(247, 216, 136, 0.07) 50%,
        rgba(233, 185, 73, 0.04) 55%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 1;
    animation: snackbarShimmer 6s ease-in-out infinite;
}

.show-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
    position: relative;
    z-index: 2;
}

.show-modal-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold-light) 60%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.show-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.show-modal-close:hover {
    color: var(--accent-gold-light);
    background: rgba(233, 185, 73, 0.12);
    border-color: rgba(233, 185, 73, 0.3);
}

.show-modal-body {
    padding: 20px 24px 24px;
    position: relative;
    z-index: 2;
}

.show-modal-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.show-modal-detail i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
    font-size: 13px;
}

.show-modal-map {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    border: 1px solid rgba(233, 185, 73, 0.15);
    overflow: hidden;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.show-modal-map .leaflet-container {
    background: #0a0a1a;
}

.show-modal-map .leaflet-tile-pane {
    filter: brightness(0.75) contrast(1.15) saturate(0.4) hue-rotate(190deg);
}

.show-modal-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 11px 18px;
    background: var(--gradient-warm);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}

.show-modal-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 185, 73, 0.35);
}

.show-modal-directions i {
    font-size: 12px;
}

@media (max-width: 480px) {
    .show-modal {
        margin: 16px;
    }
    .show-modal-map {
        height: 200px;
    }
    .show-modal-title {
        font-size: 18px;
    }
}

html.rc-light .show-modal {
    background: #ffffff;
    border-color: var(--border-color);
    box-shadow: 0 24px 80px rgba(20, 24, 40, 0.24), 0 0 40px rgba(233, 185, 73, 0.08);
}
html.rc-light .show-modal-title {
    background-image: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
}
html.rc-light .show-modal-close {
    background: rgba(20, 24, 40, 0.04);
    border-color: rgba(20, 24, 40, 0.12);
    color: var(--text-muted);
}
html.rc-light .show-modal-close:hover {
    color: var(--accent-gold);
    background: rgba(233, 185, 73, 0.14);
    border-color: rgba(233, 185, 73, 0.35);
}
html.rc-light .show-modal-detail {
    color: var(--text-secondary);
}
html.rc-light .show-card:not(.book-us) .time-and-links .time i {
    color: #e9b949;
}

@media (max-width: 768px) {
    .show-card.book-us .time-and-links {
        gap: 0.5rem;
    }

    .show-links {
        align-self: center;
    }

    .mini-map {
        height: 100px;
    }

    .past-filter {
        padding: 11px 18px;
        font-size: 12px;
    }
}
