/* Live Map — cinematic full-screen */

.live-map-page {
    position: relative;
    min-height: calc(100vh - 80px);
    background: #050508;
    overflow: hidden;
}

.live-map-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 1.25rem 1.5rem 0;
    pointer-events: none;
}

.live-map-hero > * {
    pointer-events: auto;
}

.live-map-hero h1 {
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.live-map-hero .sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0.35rem 0 0;
}

.live-map-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.live-map-stat {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.live-map-stat--hot {
    border-color: rgba(255, 80, 80, 0.5);
    color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.15);
}

.live-map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.live-map-filter {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    color: #adb5bd;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-map-filter:hover,
.live-map-filter.is-active {
    border-color: #00f2fe;
    color: #fff;
    background: rgba(0, 242, 254, 0.12);
}

#liveMapCanvas {
    width: 100%;
    height: calc(100vh - 72px);
    min-height: 480px;
}

/* Live event pins (κόκκινο) — tour pins από artist-tour.css */
.live-event-map-pin {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-event-map-pin__halo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 71, 87, 0.25);
    animation: liveMapPulseHot 2s ease-in-out infinite;
}

.live-event-map-pin__core {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff6b6b, #ee5a24);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.45);
}

.live-event-map-pin__time {
    font-size: 0.58rem;
    letter-spacing: -0.02em;
}

.live-event-map-pin__thumb {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.live-event-map-pin--tonight .live-event-map-pin__core {
    animation: liveMapPulse 2.5s ease-in-out infinite;
}

@keyframes liveMapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes liveMapPulseHot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.45); }
    50% { box-shadow: 0 0 0 12px rgba(255, 71, 87, 0); }
}

@keyframes liveMapPulseTour {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(-2deg); }
}

.live-map-card-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    padding: 1rem 1rem 1.5rem;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.85) 60%, transparent 100%);
    transform: translateY(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.live-map-card-panel.is-open {
    transform: translateY(0);
    pointer-events: auto;
}

.live-map-card {
    max-width: 420px;
    margin: 0 auto;
    background: #111216;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.live-map-card__img {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.live-map-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111216, transparent 50%);
}

.live-map-card__body {
    padding: 1rem 1.25rem 1.25rem;
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.live-map-card__tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.live-map-card__tag--live { background: rgba(255, 71, 87, 0.2); color: #ff6b6b; }
.live-map-card__tag--tour { background: rgba(255, 193, 7, 0.2); color: #ffc107; }

.live-map-card h2 {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.25rem;
}

.live-map-card .meta {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.live-map-card .btn-row {
    display: flex;
    gap: 0.5rem;
}

.live-map-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    text-align: center;
    padding: 2rem;
}

.live-map-empty p {
    color: #6c757d;
    max-width: 320px;
}

@media (max-width: 768px) {
    #liveMapCanvas {
        height: calc(100vh - 64px);
    }
    .live-map-hero {
        padding: 0.75rem 1rem 0;
    }
}
