:root {
    --bg-color: #0b0c10; /* Very dark blue/black */
    --text-color: #c5c6c7; /* Light grey */
    --neon-blue: #66fcf1;
    --neon-purple: #c724b1;
    --neon-pink: #f000ff;
    --neon-orange: #ff9800;
    --glass-bg: rgba(25, 26, 31, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; /* Prevent body scroll, map handles it */
}

/* Typography & Neon Text */
h1, h2, h3 {
    color: #fff;
    font-weight: 800;
}

.neon-text {
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    color: #fff;
}

.neon-icon {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

/* Top Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo i {
    color: var(--neon-blue);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

nav {
    display: flex;
    gap: 20px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-btn.active {
    background: var(--neon-blue);
    color: #0b0c10;
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Map Layout */
main {
    position: relative;
    width: 100vw;
    height: calc(100vh - 70px);
    margin-top: 70px; /* Offset for fixed header */
}

#map {
    width: 100%;
    height: 100%;
    background: #0f1015; /* Fallback before tiles load */
}

/* Customizing Leaflet for Dark Theme */
.leaflet-container {
    font-family: var(--font-main);
}
.leaflet-popup-content-wrapper {
    background: var(--glass-bg);
    color: #fff;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}
.leaflet-popup-tip {
    background: var(--glass-bg);
}
.leaflet-popup-content {
    margin: 15px;
}
.leaflet-popup-content h3 {
    margin-bottom: 5px;
    color: var(--neon-blue);
}
.leaflet-popup-content p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Custom Neon Marker */
.neon-marker {
    background-color: var(--neon-purple);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
    transition: transform 0.3s ease;
}

.neon-marker:hover {
    transform: scale(1.5);
    background-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink);
}

/* Featured Neon Marker */
.neon-marker.featured {
    background-color: #ffeb3b; /* Yellow */
    border-color: #fff;
    box-shadow: 0 0 15px #ffeb3b, 0 0 30px #ffc107, 0 0 45px #ff9800;
    animation: pulse-featured 1.5s infinite alternate;
}

.neon-marker.featured:hover {
    transform: scale(1.5);
    background-color: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px #ffeb3b, 0 0 60px #ffc107;
}

@keyframes pulse-featured {
    0% {
        box-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffc107;
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px #ffeb3b, 0 0 40px #ffc107, 0 0 60px #ff9800;
        transform: scale(1.3);
    }
}

/* Sidebar / Glass Panel */
.sidebar {
    position: absolute;
    top: 90px;
    right: 20px;
    width: 400px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sidebar.hidden {
    transform: translateX(120%);
    opacity: 0;
    pointer-events: none;
}

/* Custom Scrollbar for sidebar */
.sidebar::-webkit-scrollbar {
    width: 8px;
}
.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--neon-pink);
    background: rgba(0,0,0,0.6);
}

/* Venue Content Styling */
.venue-header-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    border-bottom: 2px solid var(--neon-blue);
}

.venue-details {
    padding: 25px;
}

.venue-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.venue-title {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.featured-badge {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 10px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    display: inline-block;
    vertical-align: middle;
}

.venue-rating {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.venue-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #a0a2a5;
}

/* Sections (Menu, Events) */
.section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.section-title i {
    color: var(--neon-purple);
}

.menu-list {
    list-style: none;
    margin-bottom: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: #fff;
}

.item-price {
    color: var(--neon-blue);
    font-weight: 800;
}

.event-box {
    background: rgba(0,0,0,0.4);
    border-left: 3px solid var(--neon-pink);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 10px;
}

.event-day {
    font-size: 0.8rem;
    color: var(--neon-pink);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.event-name {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
}

.btn-primary:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border: none;
    flex: 0 0 48px;
}

.btn-instagram:hover {
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.5);
    color: #fff;
}

/* Placeholder State */
.placeholder-text {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.placeholder-text i {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Global Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.glass-modal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.glass-modal.hidden {
    display: none;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.modal-close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--neon-pink);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.5rem;
}

/* VIP Form */
.vip-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.vip-form input, .vip-form select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: 0.3s;
}

.vip-form input:focus, .vip-form select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.3);
}

.vip-form option {
    background: var(--bg-color);
    color: #fff;
}

/* Contact Info */
.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--neon-purple);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-purple);
    transform: translateY(-3px);
}

/* Global Events List */
.global-event-item {
    background: rgba(0,0,0,0.4);
    border-left: 3px solid var(--neon-blue);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 15px;
}

.global-event-venue {
    font-size: 0.8rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.global-event-name {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

/* Bottom Left Controls */
.bottom-left-controls {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Filter Bar */
.glass-filter-bar {
    display: flex;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    flex-wrap: wrap;
    max-width: 450px;
}

.filter-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.1);
}

.filter-btn.active {
    background: var(--neon-blue);
    color: #000;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Venue Tags (Music, Price, Open Status) */
.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.tag-music {
    color: var(--neon-pink);
    border-color: rgba(240, 0, 255, 0.3);
}

.tag-price {
    color: var(--neon-blue);
    border-color: rgba(102, 252, 241, 0.3);
}

.tag-status-open {
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.1);
    animation: pulse-green 2s infinite;
}

.tag-status-closed {
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.3);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Reviews */
.venue-reviews {
    margin-top: 25px;
}

.review-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.reviewer-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #3f51b5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.review-stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.review-box p {
    font-size: 0.9rem;
    color: #c5c6c7;
    margin: 0;
}

/* Live Search Bar */
.glass-search-container {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 320px;
}

.glass-search-container .search-icon {
    color: var(--neon-blue);
    font-size: 1.2rem;
}

.glass-search-container input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.glass-search-container input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-suggestions {
    position: absolute;
    bottom: 100%; /* pop up */
    left: 0;
    width: 100%;
    margin-bottom: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    list-style: none;
    padding: 10px 0;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.search-suggestions.hidden {
    display: none;
}

.search-suggestion-item {
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-suggestion-item i {
    color: var(--neon-pink);
    font-size: 0.8rem;
}

.search-suggestion-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--neon-blue);
}

/* Custom scrollbar for suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}
.search-suggestions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Action Buttons */
    width: 22px;
    height: 22px;
    top: 0;
    border: 3px solid #fff;
    box-shadow: 0 0 12px var(--neon-purple), 0 0 26px var(--neon-purple);
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.story-modal.hidden {
    display: none;
}

.story-progress-container {
    display: flex;
    gap: 5px;
    padding: 15px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    border-radius: 2px;
}

.story-close-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    z-index: 10;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.story-content {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-click-left, .story-click-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: 5;
    cursor: pointer;
}

.story-click-left { left: 0; }
.story-click-right { right: 0; }

/* Clickable venue header for story */
.venue-header-img {
    cursor: pointer;
    position: relative;
}

.venue-header-img::after {
    content: '\f03e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: 0.3s;
}

.venue-header-img:hover {
    opacity: 0.8;
}

/* Live Crowd Indicator */
.crowd-container {
    margin-top: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.crowd-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #fff;
}

.crowd-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.crowd-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.crowd-low { background: #4caf50; box-shadow: 0 0 10px #4caf50; }
.crowd-medium { background: #ff9800; box-shadow: 0 0 10px #ff9800; }
.crowd-high { background: #f44336; box-shadow: 0 0 10px #f44336; }

/* Nav Links (map page) */
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* SEO Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===========================
   RESPONSIVE — Tablet (768px)
   =========================== */
@media (max-width: 768px) {
    /* Header */
    .glass-header {
        padding: 12px 16px;
        height: 60px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .logo i {
        font-size: 1.4rem;
    }

    /* Hamburger Menu */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
        color: rgba(255,255,255,0.8);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:active {
        background: rgba(102, 252, 241, 0.1);
        color: var(--neon-blue);
    }

    /* Main Content */
    main {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    /* Bottom Controls */
    .bottom-left-controls {
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 94%;
        align-items: center;
    }

    /* Search Bar */
    .glass-search-container {
        width: 100%;
    }

    /* Filter Bar — horizontal scroll */
    .glass-filter-bar {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 8px 12px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .glass-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    /* Sidebar — Bottom Sheet on Mobile */
    .sidebar {
        width: 100%;
        top: auto;
        bottom: 0;
        right: 0;
        max-height: 70vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(0);
    }

    .sidebar.hidden {
        transform: translateY(120%);
    }

    /* Venue Details */
    .venue-header-img {
        height: 200px;
    }

    .venue-details {
        padding: 18px;
    }

    .venue-title {
        font-size: 1.4rem;
    }

    .venue-title-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .action-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 11px;
    }

    .btn-instagram {
        flex: 0 0 48px;
    }

    /* Modal */
    .glass-modal {
        width: 95%;
        padding: 22px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    /* Leaflet zoom control */
    .leaflet-control-zoom {
        margin-right: 10px !important;
        margin-bottom: 120px !important;
    }
}

/* ===========================
   RESPONSIVE — Small Phone (480px)
   =========================== */
@media (max-width: 480px) {
    .glass-header {
        padding: 10px 12px;
        height: 56px;
    }

    .logo {
        font-size: 1rem;
        gap: 6px;
        letter-spacing: 1px;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .nav-links {
        top: 56px;
    }

    main {
        height: calc(100vh - 56px);
        margin-top: 56px;
    }

    /* Bottom Controls */
    .bottom-left-controls {
        bottom: 12px;
        width: 96%;
        gap: 10px;
    }

    .glass-search-container {
        padding: 8px 14px;
        border-radius: 20px;
    }

    .glass-search-container input {
        font-size: 0.9rem;
    }

    .glass-filter-bar {
        border-radius: 16px;
        padding: 6px 10px;
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Sidebar */
    .sidebar {
        max-height: 75vh;
        border-radius: 16px 16px 0 0;
    }

    .venue-header-img {
        height: 170px;
        border-radius: 16px 16px 0 0;
    }

    .venue-details {
        padding: 14px;
    }

    .venue-title {
        font-size: 1.2rem;
    }

    .venue-desc {
        font-size: 0.88rem;
    }

    .section-title {
        font-size: 1.05rem;
    }

    .menu-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn {
        width: 100%;
        flex: none;
    }

    .btn-instagram {
        flex: none;
        width: 100%;
    }

    /* Close button */
    .close-btn {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    /* Review box */
    .review-box {
        padding: 12px;
    }

    .reviewer-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .review-box p {
        font-size: 0.85rem;
    }

    /* Tags */
    .venue-tags {
        gap: 6px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    /* Crowd */
    .crowd-container {
        padding: 10px;
    }

    .crowd-header {
        font-size: 0.82rem;
    }

    /* Modal */
    .glass-modal {
        width: 96%;
        padding: 18px;
        border-radius: 16px;
    }

    .modal-header {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .modal-header h2 {
        font-size: 1.15rem;
    }

    /* Events */
    .event-box {
        padding: 10px 12px;
    }

    .event-day {
        font-size: 0.75rem;
    }

    .event-name {
        font-size: 0.9rem;
    }

    /* Placeholder text */
    .placeholder-text {
        padding: 40px 16px;
    }

    .placeholder-text i {
        font-size: 2.2rem;
    }

    .placeholder-text h2 {
        font-size: 1.2rem;
    }

    .placeholder-text p {
        font-size: 0.9rem;
    }

    /* Leaflet controls */
    .leaflet-control-zoom {
        margin-bottom: 130px !important;
    }

    .leaflet-popup-content-wrapper {
        border-radius: 10px;
    }

    .leaflet-popup-content {
        margin: 10px;
    }

    .leaflet-popup-content h3 {
        font-size: 0.95rem;
    }

    /* Neon markers bigger touch target */
    .neon-marker {
        width: 18px;
        height: 18px;
    }
}

/* ===========================
   RESPONSIVE — Very Small (360px)
   =========================== */
@media (max-width: 360px) {
    .glass-header {
        padding: 8px 10px;
        height: 52px;
    }

    .logo {
        font-size: 0.9rem;
        gap: 5px;
    }

    .logo i {
        font-size: 1.1rem;
    }

    .nav-links {
        top: 52px;
    }

    main {
        height: calc(100vh - 52px);
        margin-top: 52px;
    }

    .sidebar {
        max-height: 80vh;
    }

    .venue-title {
        font-size: 1.1rem;
    }

    .venue-details {
        padding: 12px;
    }

    .glass-search-container {
        padding: 7px 12px;
    }
}