/* CYBERPUNK 2077 OS - VENUE SYSTEM CONFIG */

html, body {
    overflow-y: auto !important;
    height: auto !important;
}

.cyber-map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-map-container:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(202, 187, 233, 0.15);
}

.cyber-map-iframe {
    filter: grayscale(1) invert(0.9) hue-rotate(200deg) contrast(1.1) brightness(0.9);
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-map-container:hover .cyber-map-iframe {
    filter: grayscale(0.2) invert(0) hue-rotate(0deg) contrast(1) brightness(1);
}

.venue-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.venue-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.venue-img-wrapper:hover {
    border-color: var(--electric-cyan, #cabbe9);
    box-shadow: 0 0 20px rgba(202, 187, 233, 0.25);
    transform: translateY(-4px);
}

.venue-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, opacity 0.6s ease;
}

.venue-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Digital crosshair and UI markings */
.cyber-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid var(--electric-cyan, #cabbe9);
    z-index: 10;
    pointer-events: none;
}
.cyber-corner-tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cyber-corner-tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.cyber-corner-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.cyber-corner-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.tech-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--electric-cyan, #cabbe9);
    background: rgba(144, 121, 198, 0.15);
    border: 1px solid rgba(144, 121, 198, 0.3);
    padding: 2px 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}