/* ========================================
   UNIFIED CSS - HOMEPAGE + SHOW PAGES
   ======================================== */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B0000 0%, #4A0000 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 0;
}

.header-title {
    flex: 1;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0 2rem;
}

.nav {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 215, 0, 0.1);
}

.nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: linear-gradient(135deg, #4A0000 0%, #2A0000 100%);
    padding: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    color: #FFD700;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: color 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(74, 0, 0, 0.9) 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5DC;
    line-height: 1.4;
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.search-box input::placeholder {
    color: rgba(255, 215, 0, 0.7);
}

.search-box input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.search-box button {
    position: absolute;
    right: 6px;
    top: 6px;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: #FFD700;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.search-box button:hover {
    background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
    transform: translateY(-2px);
}

/* Main Content Background */
.main-content-wrapper {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

/* ========================================
   OPTIMIZED CAROUSEL STYLES
   ======================================== */

.carousel-section {
    margin: 3rem 0;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Responsive Carousel Slides */
.carousel-slide {
    flex: none;
    padding: 0 8px;
    box-sizing: border-box;
    /* Desktop: 8 slides = 12.5% each */
    width: 12.5%;
}

.show-card-carousel {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(74, 0, 0, 0.2) 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(20px);
    height: 100%;
    /* Fixed dimensions for consistency */
    width: 135px;
    height: 170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.show-card-carousel:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.6);
    z-index: 10;
    position: relative;
}

.carousel-show-image {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: center;
    position: relative;
    background: linear-gradient(45deg, #8B0000, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    overflow: hidden;
}

.carousel-rating-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.carousel-show-info {
    padding: 8px;
    color: white;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-show-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: #FFD700;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 0, 0, 0.9);
    color: #FFD700;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.carousel-nav:hover {
    background: rgba(139, 0, 0, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -15px;
}

.carousel-next {
    right: -15px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.carousel-indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

/* Performance optimizations */
.carousel-show-image[style*="background-image"] {
    background-attachment: scroll;
}

/* Tablet Responsive: 6 slides */
@media (max-width: 1024px) and (min-width: 769px) {
    .carousel-slide {
        width: 16.67%; /* 6 slides = 16.67% each */
    }
    
    .carousel-container {
        max-width: 900px;
    }
}

/* Mobile Responsive: 4 slides */
@media (max-width: 768px) {
    .carousel-slide {
        width: 25%; /* 4 slides = 25% each */
        padding: 0 5px;
    }
    
    .show-card-carousel {
        width: 120px;
        height: 155px;
    }
    
    .carousel-show-image {
        height: 100px;
        font-size: 1.8rem;
    }
    
    .carousel-show-title {
        font-size: 0.75rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -10px;
    }
    
    .carousel-next {
        right: -10px;
    }
}

/* Small Mobile: Maintain 4 slides but smaller */
@media (max-width: 480px) {
    .carousel-slide {
        padding: 0 3px;
    }
    
    .show-card-carousel {
        width: 100px;
        height: 135px;
    }
    
    .carousel-show-image {
        height: 85px;
        font-size: 1.5rem;
    }
    
    .carousel-show-title {
        font-size: 0.7rem;
        padding: 4px;
    }
    
    .carousel-rating-badge {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .carousel-nav {
        display: none; /* Hide nav buttons on very small screens */
    }
}

/* Directory Layout */
.shows-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.shows-directory {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(74, 0, 0, 0.05) 100%);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.directory-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.directory-controls {
    margin-bottom: 2rem;
}

.directory-search {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.directory-search:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.directory-search::placeholder {
    color: rgba(255, 215, 0, 0.7);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    background: rgba(139, 0, 0, 0.2);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #FFD700;
}

.directory-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.directory-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: #FFD700;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.shows-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

/* Updated show-item with image */
.show-item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 5px;
}

.show-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(3px);
}

.show-item:last-child {
    border-bottom: none;
}

.show-item-image {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(45deg, #8B0000, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.show-item-content {
    min-width: 0;
    overflow: hidden;
}

.item-title {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.item-venue {
    color: #F5F5DC;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.2;
}

.item-rating {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

.item-category {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Sidebar */
.shows-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(74, 0, 0, 0.1) 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.sidebar-widget h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.closing-shows, .new-shows, .venues-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-item:hover {
    background: rgba(255, 215, 0, 0.15);
}

.sidebar-item-title {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-item-subtitle {
    color: #F5F5DC;
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: #FFD700;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-body {
    padding: 2rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
}

.close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

/* ========================================
   SHOW PAGE STYLES
   ======================================== */

/* Show Page Body Override */
body.show-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(74, 0, 0, 0.1) 100%);
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.breadcrumbs a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #4A0000;
    text-decoration: underline;
}

/* Show Hero Section */
.show-hero {
    background: linear-gradient(135deg, #8B0000 0%, #4A0000 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.show-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.show-image-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.show-image-large:hover {
    transform: translateY(-5px);
}

.show-image-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.rating-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.show-details h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.show-details h2 {
    font-size: 1.5rem;
    color: #F5F5DC;
    margin-bottom: 2rem;
    font-weight: 400;
}

.quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    color: #F5F5DC;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticket-actions {
    margin-top: 2rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    text-decoration: none;
    border-radius: 35px;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Key Info Banner */
.key-info-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card p {
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Show Page Main Content */
.show-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-section h2 {
    color: #8B0000;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.rating-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.rating-score .score {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFD700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.rating-score .stars {
    font-size: 1.8rem;
    color: #FFD700;
    margin: 0.5rem 0;
}

.rating-score p {
    color: #666;
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

.review-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.05rem;
}

.review-content h3 {
    color: #8B0000;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-list {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-left: 5px solid #28a745;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.highlight-list li {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.highlight-list li:last-child {
    margin-bottom: 0;
}

/* Show Information Detailed */
.show-info-detailed {
    margin-top: 3rem;
}

.show-info-detailed h2 {
    color: #8B0000;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

/* Tabs */
.info-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 3rem 0 2rem 0;
    border-bottom: 3px solid rgba(139, 0, 0, 0.1);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    border-radius: 10px 10px 0 0;
}

.tab-button:hover {
    color: #8B0000;
    background: rgba(139, 0, 0, 0.05);
}

.tab-button.active {
    color: #8B0000;
    border-bottom-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.tab-content {
    display: none;
    padding: 2rem 0;
    animation: fadeInUp 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.tab-content h4 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.2rem;
}

.songs-list {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-left: 5px solid #FFD700;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.songs-list li {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.6;
}

.songs-list li:last-child {
    margin-bottom: 0;
}

/* Show Page Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.widget h3 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Booking Widget */
.booking-widget {
    background: linear-gradient(135deg, #8B0000 0%, #4A0000 100%);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.booking-widget h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.booking-options {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.booking-btn {
    display: block;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.booking-info {
    margin-top: 1.5rem;
    color: #F5F5DC;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Theatre Info */
.theatre-info p {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.6;
}

.theatre-info p:last-child {
    margin-bottom: 0;
}

/* Related Shows */
.related-shows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-show {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.related-show:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-show-info strong {
    display: block;
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-show-info strong a {
    color: #8B0000;
    text-decoration: none;
}

.related-show-info strong a:hover {
    color: #4A0000;
    text-decoration: underline;
}

.related-show-info span {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: #8B0000;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-item p {
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4A0000 0%, #2A0000 100%);
    color: #F5F5DC;
    text-align: center;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.listing-promotion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto 2rem;
    max-width: 800px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.listing-promotion h3 {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.listing-promotion p {
    color: #F5F5DC;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.listing-promotion a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
}

.affiliate-notice {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.affiliate-notice strong {
    color: #FFD700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    flex-direction: column;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 215, 0, 0.3);
    border-top: 5px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-title {
        font-size: 1.4rem;
        margin: 0 1rem;
    }
    
    .hero {
        padding: 0.75rem 0;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .shows-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .directory-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }

    .show-item {
        grid-template-columns: 60px 1fr;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .show-item-content {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
    
    .item-category,
    .item-rating {
        justify-self: start;
        margin-top: 0.5rem;
    }

    .shows-directory {
        padding: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* Show Page Mobile Styles */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .show-image-large {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .show-image-large img {
        height: 400px;
    }
    
    .show-details h1 {
        font-size: 2.2rem;
    }
    
    .show-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .tab-button {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .widget {
        padding: 2rem;
    }
    
    .booking-widget {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 15px;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-title {
        font-size: 1.2rem;
        margin: 0;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .nav {
        order: 3;
    }
    
    .mobile-menu {
        order: 3;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 0.85rem;
    }
    
    .search-box input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .search-box button {
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .show-item {
        grid-template-columns: 50px 1fr;
        gap: 0.5rem;
    }
    
    .show-item-image {
        width: 50px;
        height: 67px;
    }
    
    /* Show Page Mobile Styles */
    .show-hero {
        padding: 2rem 0;
    }
    
    .show-details h1 {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    .widget {
        padding: 1.5rem;
    }
    
    .booking-widget {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-slide {
        min-width: 50%;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }