/* Exhibition Detail Page Styles */

/* Exhibition Hero Section */
.exhibition-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 30% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    animation: heroFloat 12s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.hero-particles .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { top: 60%; left: 15%; animation-delay: 3s; }
.hero-particles .particle:nth-child(3) { top: 25%; right: 20%; animation-delay: 6s; }
.hero-particles .particle:nth-child(4) { top: 75%; right: 15%; animation-delay: 1s; }
.hero-particles .particle:nth-child(5) { top: 40%; left: 70%; animation-delay: 4s; }
.hero-particles .particle:nth-child(6) { top: 80%; left: 60%; animation-delay: 7s; }
.hero-particles .particle:nth-child(7) { top: 10%; right: 50%; animation-delay: 2s; }
.hero-particles .particle:nth-child(8) { top: 90%; left: 30%; animation-delay: 5s; }

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 50%;
    animation: waveMove 8s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.5;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.3;
    height: 60px;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(180deg); }
}

/* Exhibition Hero Title */
.exhibition-hero-title {
    margin-bottom: 4rem;
    width: 100%;
    overflow: visible;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 14px 26px;
    border-radius: 35px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    max-width: 900px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.stat-icon i {
    font-size: 1.6rem;
    color: white;
}

/* Exhibition Detail Main */
.exhibition-detail-main {
    background: var(--bg-primary);
}

/* Exhibition Zones Section */
.exhibition-zones-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.zone-card {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.zone-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.zone-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

/* Zone Visual */
.zone-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.zone-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 2;
}

.zone-icon i {
    font-size: 3rem;
    color: white;
}

.zone-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.effect-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.ring-3 {
    width: 220px;
    height: 220px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Zone Content */
.zone-content {
    text-align: center;
}

.zone-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.zone-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

.zone-features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.zone-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.spec-item i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Live Demonstrations Section */
.live-demos-section {
    padding: 120px 0;
    background: white;
}

.demos-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.demo-showcase {
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.demo-showcase.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.showcase-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Demo Schedule */
.demo-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.schedule-item:hover,
.schedule-item.active {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.time {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.duration {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.demo-info {
    flex: 1;
}

.demo-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.demo-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.demo-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Demo Features */
.demo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-highlight i {
    font-size: 1.1rem;
}

/* Demos Sidebar */
.demos-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-card,
.contact-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.card-header {
    margin-bottom: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.card-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Expert Contact */
.expert-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.expert-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

.expert-stats {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.expert-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.expert-stats i {
    color: #f59e0b;
    font-size: 0.8rem;
}

/* Visit Information Section */
.visit-info-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.visit-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.info-card,
.amenities-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.info-card.animate-in,
.amenities-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
    font-size: 2rem;
    color: #3b82f6;
}

.amenity-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Visit Sidebar */
.visit-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-card,
.resources-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 2px dashed var(--border-color);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.map-icon i {
    font-size: 2rem;
    color: white;
}

.map-button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Resource Links */
.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.resource-link:hover {
    background: #3b82f6;
    color: white;
    text-decoration: none;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.resource-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.resource-icon i {
    font-size: 1.1rem;
    color: white;
}

.resource-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.resource-name {
    font-weight: 600;
    font-size: 1rem;
}

.resource-size {
    font-size: 0.85rem;
    opacity: 0.8;
}

.resource-link > i:last-child {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.resource-link:hover > i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem 1.5rem;
    }
    
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .zone-card {
        padding: 2rem;
    }
    
    .demos-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-showcase {
        padding: 2rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .time-slot {
        align-self: center;
    }
    
    .visit-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card,
    .amenities-card {
        padding: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .zone-card {
        padding: 1.5rem;
    }
    
    .zone-visual {
        height: 150px;
    }
    
    .zone-icon {
        width: 100px;
        height: 100px;
    }
    
    .zone-icon i {
        font-size: 2.5rem;
    }
    
    .demo-showcase {
        padding: 1.5rem;
    }
    
    .showcase-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Exhibition Listing Page Styles */

/* Exhibition Main */
.exhibition-main {
    background: var(--bg-primary);
}

/* Exhibitions Grid Section */
.exhibitions-grid-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    align-items: start;
}

.exhibition-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.exhibition-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.exhibition-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.exhibition-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.exhibition-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Exhibition Visual */
.exhibition-visual {
    height: 280px;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.visual-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Exhibition Illustrations */
.exhibition-illustration {
    position: relative;
    width: 250px;
    height: 200px;
}

/* Main Hall Illustration */
.main-hall {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hall-screens {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.screen {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    animation: screenPulse 3s ease-in-out infinite;
}

.screen-2 {
    animation-delay: 1s;
    height: 100px;
}

.screen-3 {
    animation-delay: 2s;
}

@keyframes screenPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hall-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.light-ray {
    position: absolute;
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    animation: rayMove 4s ease-in-out infinite;
}

.ray-1 {
    left: 20%;
    animation-delay: 0s;
}

.ray-2 {
    left: 50%;
    animation-delay: 1.5s;
}

.ray-3 {
    right: 20%;
    animation-delay: 3s;
}

@keyframes rayMove {
    0%, 100% { transform: translateY(-50px); opacity: 0; }
    50% { transform: translateY(50px); opacity: 1; }
}

/* Indoor Gallery Illustration */
.indoor-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-displays {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.display {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
    animation: displayFlicker 2s ease-in-out infinite;
}

.display-2 {
    animation-delay: 0.5s;
}

.display-3 {
    animation-delay: 1s;
}

.display-4 {
    animation-delay: 1.5s;
}

@keyframes displayFlicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; box-shadow: 0 0 25px rgba(16, 185, 129, 0.8); }
}

.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Outdoor Arena Illustration */
.outdoor-arena {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arena-screen {
    width: 120px;
    height: 80px;
    background: #000;
    border-radius: 8px;
    border: 3px solid #333;
    position: relative;
    overflow: hidden;
}

.screen-pixels {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pixel-row {
    display: flex;
    gap: 8px;
}

.pixel {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.pixel.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    animation: pixelBlink 2s ease-in-out infinite;
}

@keyframes pixelBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.weather-effects {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, transparent, #3b82f6);
    animation: rainFall 2s linear infinite;
}

.drop-1 {
    left: 30%;
    animation-delay: 0s;
}

.drop-2 {
    left: 60%;
    animation-delay: 0.7s;
}

.drop-3 {
    right: 20%;
    animation-delay: 1.4s;
}

@keyframes rainFall {
    0% { transform: translateY(-30px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(120px); opacity: 0; }
}

.sun-ray {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow 3s ease-in-out infinite;
}

@keyframes sunGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Tech Lab Illustration */
.tech-lab {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-interface {
    position: relative;
    width: 150px;
    height: 120px;
}

.interface-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

.touch-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

.touch-point {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: touchPulse 2s ease-in-out infinite;
}

.point-2 {
    animation-delay: 0.7s;
}

.point-3 {
    animation-delay: 1.4s;
}

@keyframes touchPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

.gesture-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: waveExpand 3s ease-in-out infinite;
}

.ring-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    animation-delay: 1.5s;
}

@keyframes waveExpand {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

/* VR Center Illustration */
.vr-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-headset {
    position: relative;
    width: 100px;
    height: 60px;
}

.headset-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.headset-lens {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    animation: lensGlow 2s ease-in-out infinite;
}

.lens-1 {
    left: 20px;
}

.lens-2 {
    right: 20px;
    animation-delay: 1s;
}

@keyframes lensGlow {
    0%, 100% { opacity: 0.8; box-shadow: 0 0 15px rgba(59, 130, 246, 0.6); }
    50% { opacity: 1; box-shadow: 0 0 25px rgba(59, 130, 246, 1); }
}

.vr-environment {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
}

.env-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: envFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.particle-4 {
    top: 40%;
    right: 40%;
    animation-delay: 3s;
}

@keyframes envFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* Innovation Showcase Illustration */
.innovation-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-display {
    position: relative;
    width: 140px;
    height: 100px;
}

.display-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
}

.frame-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.content-wave {
    position: absolute;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: contentFlow 3s ease-in-out infinite;
}

.wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    animation-delay: 1s;
}

.wave-3 {
    top: 80%;
    animation-delay: 2s;
}

@keyframes contentFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.innovation-sparks {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f59e0b;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.spark-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.spark-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 0.7s;
}

.spark-3 {
    top: 60%;
    right: 10%;
    animation-delay: 1.4s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Exhibition Content */
.exhibition-content {
    padding: 2.5rem;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-header {
    margin-bottom: 1.5rem;
    overflow: visible;
    width: 100%;
}

.exhibition-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-overflow: unset !important;
    overflow: visible !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.exhibition-category {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 10px 18px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 1rem;
}

.exhibition-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.exhibition-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.exhibition-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spec-item i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Exhibition Actions */
.exhibition-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.exhibition-cta {
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.exhibition-cta:hover,
.exhibition-cta:focus {
    text-decoration: none;
}

.exhibition-cta.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.exhibition-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    color: white;
}

.exhibition-cta.secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.exhibition-cta.secondary:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-2px);
}

/* Visit Planning Section */
.visit-planning-section {
    padding: 120px 0;
    background: white;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.planning-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.planning-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.planning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.planning-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Hours Info */
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.day {
    font-weight: 600;
    color: var(--text-primary);
}

.time {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Admission Info */
.admission-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admission-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.type {
    font-weight: 600;
    color: var(--text-primary);
}

.price {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Location Info */
.location-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Booking Info */
.booking-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-btn {
    padding: 14px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    justify-content: center;
}

.booking-btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.booking-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.booking-btn.secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.booking-btn.secondary:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-2px);
}

/* Responsive Design for Exhibition Listing */
@media (max-width: 768px) {
    .exhibitions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .exhibition-card.featured {
        grid-column: span 1;
    }
    
    .exhibition-visual {
        height: 220px;
    }
    
    .exhibition-illustration {
        width: 200px;
        height: 160px;
    }
    
    .exhibition-content {
        padding: 2rem;
    }
    
    .exhibition-specs {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .exhibition-actions {
        flex-direction: column;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .planning-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .exhibition-content {
        padding: 1.5rem;
    }
    
    .exhibition-title {
        font-size: 2.5rem;
    }
    
    .exhibition-features {
        justify-content: center;
    }
    
    .exhibition-visual {
        height: 180px;
    }
    
    .exhibition-illustration {
        width: 160px;
        height: 120px;
    }
    
    .planning-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .location-features {
        flex-direction: column;
        gap: 1rem;
    }
}