.live-hero {
    position: relative;
    padding: 10rem 2rem 4rem;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.live-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.live-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.live-hero .section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.live-hero .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-hero .section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.live-section {
    position: relative;
    padding: 0 2rem 6rem;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.live-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.live-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.live-tab svg {
    opacity: 0.6;
    transition: var(--transition);
}

.live-tab:hover {
    color: var(--text-primary);
    border-color: rgba(0, 240, 255, 0.2);
}

.live-tab:hover svg {
    opacity: 1;
}

.live-tab.active {
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.live-tab.active svg {
    opacity: 1;
    color: var(--accent-cyan);
}

.live-panel {
    display: none;
}

.live-panel.active {
    display: block;
}

.iframe-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.iframe-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
    border: none;
}

.iframe-map {
    min-height: 600px;
}

.iframe-map iframe {
    height: 700px;
}

.panel-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-secondary);
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: var(--glass-border);
    border-radius: 20px;
}

.panel-empty svg {
    opacity: 0.3;
}

.panel-empty p {
    font-size: 0.95rem;
    opacity: 0.6;
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--text-secondary);
    gap: 1rem;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.map-loading p {
    font-size: 0.95rem;
    opacity: 0.6;
}

.retry-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.retry-btn:hover {
    background: rgba(0, 240, 255, 0.15);
}

@media (max-width: 768px) {
    .live-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .live-section {
        padding: 0 1rem 4rem;
    }

    .live-tabs {
        gap: 0.4rem;
    }

    .live-tab {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
    }

    .iframe-wrapper iframe {
        height: 450px;
    }

    .iframe-map iframe {
        height: 500px;
    }
}
