/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    padding-top: 150px;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

/* ===== PARTICLE BACKGROUND ===== */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.neon-nav {
    position: fixed;
    top: 50px;
    width: 100%;
    z-index: 100;
}

.neon-nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.neon-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #00f3ff;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
}

.neon-nav a:hover {
    text-shadow: 0 0 20px #ff00ff;
    background: rgba(255, 255, 255, 0.1);
}

/* User account icon – top right */
.user-nav-btn {
    position: fixed;
    top: calc(18px + env(safe-area-inset-top, 0));
    right: calc(18px + env(safe-area-inset-right, 0));
    z-index: 110;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}
.user-nav-btn:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 22px rgba(255, 0, 255, 0.5);
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    text-shadow: 0 0 15px #00f3ff;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00f3ff, #ff00ff);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.neon-title {
    font-size: 4rem;
    text-shadow: 0 0 20px #00f3ff;
    margin-bottom: 20px;
}

.neon-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-shadow: 0 0 15px #ff00ff;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.hero-cta-btn {
    flex: 1 1 150px;
    min-width: 140px;
    max-width: 200px;
    margin: 0;
    padding: 14px 24px;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
}

.hero-cta-btn--events {
    border-color: #ff00ff;
    box-shadow: 0 0 18px rgba(255, 0, 255, 0.45);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.hero-cta-btn--events:hover {
    border-color: #00f3ff;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
    text-shadow: 0 0 10px #00f3ff;
}

/* ===== BUTTONS ===== */
.neon-button {
    background: transparent;
    border: 2px solid #00f3ff;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #00f3ff;
    box-shadow: 0 0 15px #00f3ff;
    border-radius: 30px;
    margin: 10px;
}

.neon-button:hover {
    border-color: #ff00ff;
    box-shadow: 0 0 25px #ff00ff;
    transform: translateY(-3px);
}

.neon-button--compact {
    margin: 15px auto 0;
    display: inline-block;
    font-size: 1rem;
    padding: 12px 28px;
}

#cocktail-container img,
.hero-logo {
    max-width: min(300px, 85vw);
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.site-hours-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

footer {
    text-align: center;
    padding: 30px 20px calc(30px + env(safe-area-inset-bottom, 0));
}

footer .social-links {
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.loading {
    grid-column: 1 / -1;
}

/* ===== MENU SECTION ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.menu-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 243, 255, 0.1);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00f3ff;
}

.menu-card p {
    margin-bottom: auto;
    color: #ccc;
}

.menu-card .price {
    font-size: 1.3rem;
    color: #ff00ff;
    font-weight: bold;
}

.menu-button {
    padding: 10px 20px;
    font-size: 1rem;
    margin: 15px 0 0 0;
    width: 100%;
    box-shadow: 0 0 10px #00f3ff;
}

.menu-button:hover {
    box-shadow: 0 0 15px #ff00ff;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== EVENTS SECTION ===== */
.events-container {
    width: 100%;
    max-width: 1000px;
}

.event-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.event-date {
    color: #ff00ff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.event-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00f3ff;
}

.event-description {
    margin-bottom: 20px;
    color: #ccc;
}

.event-detail-item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #ccc;
    line-height: 1.5;
}

.event-detail-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff00ff;
    font-size: 1.2rem;
}

/* ===== CONTACTS SECTION ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    align-items: start;
}

.contact-info {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00f3ff;
}

.contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detail i {
    color: #ff00ff;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 5px;
    color: white;
}

.contact-form textarea {
    min-height: 150px;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(110%) brightness(90%);
}

.map-container:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ff00ff;
    transform: translateY(-3px);
}

/* ===== POPUPS ===== */
.menu-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.menu-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-popup {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.menu-popup-overlay.active .menu-popup {
    transform: translateY(0);
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.popup-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-popup-overlay.event-popup-mode .popup-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    max-height: none;
}

.popup-text {
    color: #fff;
}

.popup-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00f3ff;
    text-shadow: 0 0 10px #00f3ff;
}

.popup-description {
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.6;
}

.full-menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.menu-item-name {
    color: #fff;
}

.menu-item-price {
    color: #ff00ff;
    font-weight: bold;
}

/* Panozzi — composable sandwich menu */
.panozzi-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.panozzi-hero {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.12), rgba(255, 0, 255, 0.08));
    border: 1px solid rgba(0, 243, 255, 0.35);
    border-radius: 14px;
    padding: 18px;
}

.panozzi-hero-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.panozzi-price-card {
    background: rgba(10, 10, 14, 0.85);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panozzi-price-card--base {
    border-color: rgba(0, 243, 255, 0.45);
    box-shadow: 0 0 18px rgba(0, 243, 255, 0.12);
}

.panozzi-price-card--extra {
    border-color: rgba(255, 0, 255, 0.35);
    box-shadow: 0 0 18px rgba(255, 0, 255, 0.1);
}

.panozzi-price-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 700;
    color: #00f3ff;
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.45);
    line-height: 1.1;
}

.panozzi-price-card--extra .panozzi-price-value {
    color: #ff00ff;
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.4);
}

.panozzi-price-caption {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-top: 6px;
}

.panozzi-price-note {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
    line-height: 1.35;
}

.panozzi-hero-text {
    margin: 0;
    color: #ccc;
    font-size: 0.92rem;
    line-height: 1.55;
}

.panozzi-section {
    background: rgba(22, 22, 28, 0.75);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.panozzi-section--base {
    border-left: 4px solid #00f3ff;
}

.panozzi-section--addon {
    border-left: 4px solid #ff00ff;
}

.panozzi-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.panozzi-section-title {
    margin: 0;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
}

.panozzi-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.panozzi-badge--base {
    background: rgba(0, 243, 255, 0.15);
    color: #00f3ff;
    border: 1px solid rgba(0, 243, 255, 0.4);
}

.panozzi-badge--addon {
    background: rgba(255, 0, 255, 0.12);
    color: #ff00ff;
    border: 1px solid rgba(255, 0, 255, 0.35);
}

.panozzi-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px 14px;
}

.panozzi-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.panozzi-option--note {
    grid-column: 1 / -1;
    background: transparent;
    border: none;
    padding: 4px 0 0;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.panozzi-option--note .panozzi-option-name {
    color: #999;
}

.panozzi-option--priced {
    border-color: rgba(0, 243, 255, 0.25);
    background: rgba(0, 243, 255, 0.06);
}

.panozzi-option-name {
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.3;
}

.panozzi-option-price {
    color: #00f3ff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.panozzi-option-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff00ff;
    background: rgba(255, 0, 255, 0.12);
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.panozzi-example {
    background: rgba(255, 0, 255, 0.08);
    border: 1px dashed rgba(255, 0, 255, 0.35);
    border-radius: 12px;
    padding: 14px 16px;
    color: #ddd;
    font-size: 0.92rem;
    line-height: 1.5;
}

.panozzi-example-total {
    color: #00f3ff;
    font-weight: 700;
    font-size: 1.1rem;
}

.panozzi-example em {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 0.82rem;
    font-style: normal;
}

.panozzi-footnote {
    margin: 0;
    text-align: center;
    color: #888;
    font-size: 0.88rem;
    font-style: italic;
}

@media (max-width: 520px) {
    .panozzi-hero-prices {
        grid-template-columns: 1fr;
    }

    .panozzi-options {
        grid-template-columns: 1fr;
    }
}

/* Photo Popup */
.photo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.photo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.photo-popup {
    position: relative;
    background: rgb(0, 0, 0);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-popup img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

/* Close Buttons */
.close-popup, .close-photo-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(20, 20, 20, 0);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.close-popup::before, .close-photo-popup::before,
.close-popup::after, .close-photo-popup::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ff00ff;
    transition: all 0.3s ease;
}

.close-popup::before, .close-photo-popup::before {
    transform: rotate(45deg);
}

.close-popup::after, .close-photo-popup::after {
    transform: rotate(-45deg);
}

.close-popup:hover, .close-photo-popup:hover {
    transform: rotate(90deg);
}

.close-popup:hover::before, .close-photo-popup:hover::before,
.close-popup:hover::after, .close-photo-popup:hover::after {
    background: #00f3ff;
    height: 3px;
}

.close-popup:active, .close-photo-popup:active {
    transform: rotate(90deg) scale(0.9);
    background: rgba(0, 243, 255, 0.3);
}

.close-photo-popup {
    top: 15px;
    right: 15px;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    max-width: 350px;
    cursor: pointer;
}

.notification-popup.active {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.notification-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.notification-message {
    color: white;
    font-size: 1rem;
    text-shadow: 0 0 5px #00f3ff;
    padding-right: 20px;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
    color: #00f3ff;
}

/* ===== PRIVACY PAGE ===== */
.privacy-page {
    padding-top: 88px;
    padding-bottom: 90px;
}

.privacy-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.97), rgba(8, 8, 12, 0.75));
    border-bottom: 1px solid rgba(0, 243, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.privacy-top-bar .privacy-home-btn {
    margin: 0;
    padding: 12px 36px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.privacy-container {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 22px;
}

.privacy-logo {
    width: 88px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
    filter: drop-shadow(0 0 14px rgba(0, 243, 255, 0.45));
}

.privacy-page-title {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    margin-bottom: 0;
}

.privacy-intro {
    background: linear-gradient(135deg, rgba(20, 20, 28, 0.92), rgba(12, 12, 18, 0.95));
    border: 1px solid rgba(0, 243, 255, 0.28);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 24px;
    box-shadow: 0 0 32px rgba(0, 243, 255, 0.1);
}

.privacy-intro p {
    color: #ccc;
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 14px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-intro-short {
    padding: 16px 18px;
    background: rgba(0, 243, 255, 0.07);
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.privacy-intro-hint {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 20px !important;
}

.privacy-intro-hint i {
    color: #00f3ff;
    margin-right: 6px;
}

/* Privacy — uniform category cards + dedicated modal */
.privacy-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.privacy-card-tile {
    aspect-ratio: 1;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 14px 14px;
    gap: 8px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: linear-gradient(160deg, rgba(22, 22, 30, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(0, 243, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 14px rgba(0, 243, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.privacy-card-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 243, 255, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 243, 255, 0.12);
}

.privacy-card-tile__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1.35rem;
    color: #00f3ff;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.4);
    border-radius: 12px;
}

.privacy-card-tile__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    min-height: 2.4em;
    margin-bottom: 0;
    width: 100%;
}

.privacy-card-tile__teaser {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    flex: 0 1 auto;
    font-size: 0.82rem;
    color: #bbb;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 0;
}

.privacy-card-tile__cta {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 18px;
    border: 2px solid #00f3ff;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.25);
}

body.privacy-modal-open {
    overflow: hidden;
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.privacy-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    background: rgba(20, 20, 20, 0.98);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.35);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.25);
    padding: 24px 22px 22px;
    overflow: hidden;
}

.privacy-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ff00ff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.privacy-modal-close:hover {
    color: #00f3ff;
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-right: 36px;
}

.privacy-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #00f3ff;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.4);
    border-radius: 12px;
}

.privacy-modal-title {
    margin: 0;
    font-size: 1.35rem;
    color: #ff00ff;
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.35);
    line-height: 1.25;
}

.privacy-modal-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding: 4px 8px 8px 4px;
}

.privacy-modal-body .privacy-detail {
    padding: 0;
    animation: none;
    max-width: none;
}

.privacy-modal-body .privacy-detail p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: none;
}

.privacy-modal-body .privacy-detail p:last-child {
    margin-bottom: 0;
}

.privacy-modal-body .privacy-detail h4 {
    color: #00f3ff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 22px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.25);
    max-width: none;
}

.privacy-modal-body .privacy-detail h4:first-child {
    margin-top: 0;
}

.privacy-modal-body .privacy-detail ul {
    color: #bbb;
    margin: 0 0 18px 0;
    padding-left: 1.35rem;
    line-height: 1.7;
    font-size: 0.94rem;
    max-width: none;
}

.privacy-modal-body .privacy-detail li {
    margin-bottom: 10px;
}

.privacy-modal-body .privacy-detail li:last-child {
    margin-bottom: 0;
}

.privacy-modal-body .privacy-detail a {
    color: #00f3ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-modal-body .privacy-detail a:hover {
    color: #ff00ff;
}

.privacy-modal-body .privacy-table-wrap {
    overflow-x: auto;
    margin: 12px 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.privacy-modal-body .privacy-table {
    width: 100%;
    font-size: 0.88rem;
}

.privacy-modal-body .privacy-legal-note {
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 0.88rem;
    color: #999;
    font-style: italic;
    background: rgba(0, 243, 255, 0.06);
    border-left: 3px solid rgba(0, 243, 255, 0.4);
    border-radius: 0 8px 8px 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
}

/* Tiles: <details> accordion in grid */
.privacy-grid details.privacy-tile {
    aspect-ratio: 1;
    min-height: 0;
    background: linear-gradient(160deg, rgba(22, 22, 30, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border-radius: 14px;
    border: 1px solid rgba(0, 243, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 14px rgba(0, 243, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.privacy-grid details.privacy-tile:not([open]) {
    aspect-ratio: 1;
}

.privacy-grid details.privacy-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 243, 255, 0.45);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 243, 255, 0.12);
}

.privacy-grid details.privacy-tile[open] {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    border-color: rgba(255, 0, 255, 0.45);
    box-shadow: 0 0 28px rgba(255, 0, 255, 0.12);
    transform: none;
}

/* Content lives in popup only — never inline in the grid */
.privacy-grid details.privacy-tile > .privacy-detail {
    display: none !important;
}

.privacy-grid details.privacy-tile[open] {
    grid-column: auto;
    aspect-ratio: 1;
    border-color: rgba(0, 243, 255, 0.22);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), 0 0 14px rgba(0, 243, 255, 0.06);
}

.privacy-grid details.privacy-tile[open] > summary {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 12px 10px;
    border-bottom: none;
}

.privacy-grid details.privacy-tile[open] .privacy-summary-title {
    color: #fff;
    font-size: 0.78rem;
}

.privacy-grid details.privacy-tile[open] .privacy-chevron {
    transform: none;
    margin-left: 0;
}

.privacy-grid details.privacy-tile > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 12px 10px;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
    user-select: none;
}

.privacy-grid details.privacy-tile > summary::-webkit-details-marker,
.privacy-grid details.privacy-tile > summary::marker {
    display: none;
    content: '';
}

.privacy-grid .privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.35);
    border-radius: 12px;
    flex-shrink: 0;
}

.privacy-summary-title {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
}

.privacy-grid details.privacy-tile:not([open]) .privacy-summary-teaser {
    display: none;
}

.privacy-grid details.privacy-tile[open] > summary {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 16px;
    min-height: auto;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-grid details.privacy-tile[open] .privacy-summary-teaser {
    display: none;
}

.privacy-grid details.privacy-tile[open] .privacy-chevron {
    margin-left: auto;
    transform: rotate(45deg);
    background: rgba(255, 0, 255, 0.15);
    border-color: #ff00ff;
    color: #ff00ff;
}

.privacy-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 243, 255, 0.4);
    color: #00f3ff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.privacy-grid details.privacy-tile[open] .privacy-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.privacy-grid details.privacy-tile[open] .privacy-summary-title {
    color: #ff00ff;
    font-size: 1rem;
}

.privacy-detail {
    padding: 26px 28px 32px;
    border-top: none;
    animation: privacyFadeIn 0.35s ease;
}

@keyframes privacyFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.privacy-detail p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 14px;
    max-width: 72ch;
}

.privacy-detail h4 {
    color: #00f3ff;
    font-size: 1rem;
    margin: 22px 0 10px;
    font-weight: 600;
}

.privacy-detail h4:first-child {
    margin-top: 4px;
}

.privacy-detail ul {
    color: #bbb;
    margin: 0 0 14px 0;
    padding-left: 1.25rem;
    line-height: 1.65;
    font-size: 0.96rem;
    max-width: 72ch;
}

.privacy-detail li {
    margin-bottom: 8px;
}

.privacy-detail a {
    color: #00f3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-detail a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

/* Privacy section popup (same pattern as menu popup) */
.privacy-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-popup {
    max-width: min(720px, 94vw);
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.privacy-popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-right: 40px;
}

.privacy-popup-header .privacy-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.privacy-popup-title {
    margin: 0;
    font-size: 1.5rem;
    color: #ff00ff;
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.35);
    line-height: 1.25;
}

.privacy-popup-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 8px;
}

.privacy-popup-body .privacy-detail {
    display: block;
    padding: 0;
    animation: none;
}

.privacy-popup-body .privacy-detail p,
.privacy-popup-body .privacy-detail ul,
.privacy-popup-body .privacy-detail h4 {
    max-width: none;
}

.privacy-table-wrap {
    overflow-x: auto;
    margin: 16px 0 18px;
    max-width: 100%;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.privacy-table th,
.privacy-table td {
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.privacy-table th {
    background: rgba(0, 243, 255, 0.1);
    color: #00f3ff;
}

.privacy-table td {
    color: #bbb;
}

.privacy-legal-note {
    font-size: 0.88rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 16px !important;
}

.privacy-footer {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.privacy-update {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    margin-top: 12px;
    font-style: italic;
}

.gallery-placeholder {
    grid-column: 1 / -1;
    max-width: 100%;
}

@media (min-width: 768px) {
    .privacy-container {
        max-width: 960px;
    }

    .privacy-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .privacy-card-tile__icon {
        width: 56px;
        height: 56px;
        font-size: 1.45rem;
    }

    .privacy-card-tile__title {
        font-size: 0.95rem;
    }

    .privacy-card-tile__teaser {
        font-size: 0.86rem;
    }

    .privacy-card-tile__cta {
        font-size: 0.88rem;
        padding: 9px 20px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .privacy-container {
        max-width: 560px;
    }

    .privacy-grid {
        gap: 14px;
    }

    .privacy-grid details.privacy-tile > summary {
        padding: 14px 12px;
    }

    .privacy-grid .privacy-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .privacy-summary-title {
        font-size: 0.85rem;
    }

    .privacy-logo {
        width: 100px;
    }
}

@media (max-width: 640px) {
    .privacy-page {
        padding-top: 82px;
    }

    .privacy-container {
        padding: 0 14px;
    }

    .privacy-intro {
        padding: 18px 16px;
    }

    .privacy-detail {
        padding: 0;
    }

    .privacy-table {
        font-size: 0.8rem;
    }

    .privacy-modal-dialog {
        padding: 20px 18px 18px;
    }

    .privacy-modal-title {
        font-size: 1.2rem;
    }

    .privacy-modal-body .privacy-detail p {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .privacy-modal-body .privacy-detail h4 {
        font-size: 1rem;
        margin: 18px 0 10px;
    }

    .privacy-modal-body .privacy-detail ul {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes neonShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hamburger {
    display: none;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .neon-nav ul {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 20px;
        z-index: 99;
        gap: 8px;
    }

    .neon-nav ul.active {
        display: flex;
    }

    .user-nav-btn {
        top: calc(14px + env(safe-area-inset-top, 0));
        right: calc(14px + env(safe-area-inset-right, 0));
        width: 44px;
        height: 44px;
    }

    .hamburger {
        position: fixed;
        top: calc(14px + env(safe-area-inset-top, 0));
        left: calc(14px + env(safe-area-inset-left, 0));
        right: auto;
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        cursor: pointer;
        z-index: 102;
        border-radius: 50%;
        border: 2px solid #00f3ff;
        background: rgba(20, 20, 20, 0.95);
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
        font: inherit;
        color: inherit;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 97;
    }

    .neon-nav ul {
        top: calc(68px + env(safe-area-inset-top, 0));
        left: 12px;
        right: auto;
        width: min(320px, calc(100vw - 24px));
        border-radius: 18px;
        background: linear-gradient(165deg, rgba(16, 16, 24, 0.98) 0%, rgba(8, 8, 14, 0.99) 100%);
        border: 1px solid rgba(0, 243, 255, 0.45);
        box-shadow:
            0 16px 48px rgba(0, 0, 0, 0.75),
            0 0 32px rgba(0, 243, 255, 0.14),
            inset 0 1px 0 rgba(0, 243, 255, 0.15);
        padding: 40px 18px 42px;
        gap: 12px;
        overflow: visible;
        box-sizing: border-box;
    }

    .neon-nav ul.active li {
        width: 100%;
        flex-shrink: 0;
    }

    .neon-nav ul.active li:first-child a {
        margin-top: 4px;
    }

    .neon-nav ul.active li:last-child a {
        margin-bottom: 4px;
    }

    .neon-nav ul.active a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        border-radius: 14px;
        border: 1px solid rgba(0, 243, 255, 0.35);
        background: linear-gradient(90deg, rgba(0, 243, 255, 0.1) 0%, rgba(255, 0, 255, 0.06) 100%);
        box-sizing: border-box;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.35);
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .neon-nav ul.active a:hover,
    .neon-nav ul.active a:active {
        border-color: rgba(255, 0, 255, 0.65);
        background: linear-gradient(90deg, rgba(0, 243, 255, 0.14) 0%, rgba(255, 0, 255, 0.14) 100%);
        box-shadow: 0 0 16px rgba(255, 0, 255, 0.2);
        text-shadow: 0 0 12px rgba(255, 0, 255, 0.45);
    }

    .hero-cta-row {
        max-width: 100%;
        gap: 12px;
        padding: 0 8px;
    }

    .hero-cta-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        max-width: none;
        padding: 13px 16px;
        font-size: 0.95rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .menu-card img {
        height: 96px;
    }

    .menu-card-content {
        padding: 10px 10px 12px;
        height: auto;
    }

    .menu-card h3 {
        font-size: 0.88rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .menu-card p {
        font-size: 0.72rem;
        line-height: 1.35;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .menu-card .menu-button {
        padding: 7px 10px;
        font-size: 0.7rem;
        margin: 0;
        width: 100%;
        box-shadow: 0 0 8px rgba(0, 243, 255, 0.35);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-item {
        height: 110px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 3px;
        background: #00f3ff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding-top: 0;
    }

    .neon-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 20px;
        scroll-margin-top: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-options {
        grid-template-columns: 1fr;
    }

    .menu-section {
        padding: 10px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .menu-popup {
        width: 95% !important;
        max-height: 90vh !important;
        padding: 25px 15px !important;
        overflow: hidden !important;
        box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    }

    .popup-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        max-height: 82vh !important;
        overflow-y: auto !important;
        padding-right: 15px;
        margin-right: -10px;
    }

    .popup-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 2 / 1;
        margin: 0 0 15px 0 !important;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

    .menu-popup-overlay.event-popup-mode .popup-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 2 / 1;
    }


    .popup-text {
        width: 100% !important;
    }

    .popup-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .popup-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .full-menu-list {
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 5px;
    }

    .menu-item {
        font-size: 0.9rem;
        padding: 8px 0;
        margin-right: 5px;
    }

    .popup-content::-webkit-scrollbar {
        width: 6px;
        margin-right: 5px;
    }

    .popup-content::-webkit-scrollbar-track {
        background: rgba(0, 243, 255, 0.05);
        border-radius: 10px;
        margin-right: 5px;
    }

    .popup-content::-webkit-scrollbar-thumb {
        background: rgba(0, 243, 255, 0.3);
        border-radius: 10px;
        margin-right: 5px;
        border: 1px solid rgba(0, 243, 255, 0.1);
    }

    .popup-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 0, 255, 0.4);
    }

    .close-popup {
        position: sticky;
        top: 0;
        right: 0; /* Add this line to stick it to the right */
        margin-left: auto; /* Ensures it aligns right inside a flex container */
        margin-bottom: -30px;
        z-index: 10;
        background: rgba(10, 10, 10, 0.1) !important;
        backdrop-filter: blur(5px);
        width: 35px;
        height: 35px;
        margin-right: -5px;
    }

    .close-popup::before, 
    .close-popup::after {
        background: #ff00ff;
        width: 18px;
    }

}


/* ===== RESPONSIVE (tablet / mobile only — do not override desktop layout) ===== */
@media (max-width: 1024px) {
    .neon-nav ul {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 15px;
    }

    .neon-nav a {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 50px 20px;
    }

    .neon-title {
        font-size: clamp(2rem, 8vw, 4rem);
        margin-bottom: 15px;
    }

    .neon-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: 30px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .menu-card img {
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        height: 300px;
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .popup-content {
        grid-template-columns: 1fr;
    }

    .popup-image {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
}

/* Mobile: compact 2-column menu & gallery (wins over rules above) */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

/* ===== TABLET SPECIFIC STYLES ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-container {
        order: 0;
    }
    
    .contact-info {
        order: 0;
    }
}

/* ===== LANDSCAPE MOBILE STYLES ===== */
@media (max-width: 767px) and (orientation: landscape) {
    body {
        padding-top: 80px;
    }
    
    .hero {
        min-height: 60vh;
        padding: 30px 15px;
    }
    
    .menu-grid, .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .menu-card img {
        height: 120px;
    }
    
    .gallery-item {
        height: 150px;
    }
}

/* ===== VERY SMALL DEVICES ===== */
@media (max-width: 360px) {
    .menu-grid, .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .menu-card img {
        height: 84px;
    }

    .gallery-item {
        height: 96px;
    }
    
    .neon-nav ul {
        gap: 8px;
    }
    
    .neon-nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* ===== LARGE TABLETS AND SMALL DESKTOPS ===== */
@media (min-width: 1025px) and (max-width: 1280px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) {
    .neon-button, .menu-card, .gallery-item {
        transition: none;
    }
    
    .neon-button:active {
        transform: scale(0.98);
    }
}

/* ===== SAFARI SPECIFIC FIXES ===== */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* ===== FONT SIZE ADJUSTMENTS ===== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-card h3 {
        font-size: 1.3rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
}


/* Loading and empty states */
.loading, .no-events {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #00f3ff;
    text-shadow: 0 0 10px #00f3ff;
    grid-column: 1 / -1;
}

.no-events {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

/* ===== SCROLLBAR STYLES FOR MOBILE ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 243, 255, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 0, 255, 0.4);
}

/* ===== AUTH & PROFILE ===== */
.auth-section { padding-top: 40px; min-height: 80vh; }
.auth-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 25px; flex-wrap: wrap; }
.auth-tab {
    background: transparent; border: 2px solid rgba(0, 243, 255, 0.4); color: #fff;
    padding: 10px 28px; border-radius: 25px; cursor: pointer; font-size: 1rem;
}
.auth-tab.active { border-color: #ff00ff; box-shadow: 0 0 15px rgba(255, 0, 255, 0.4); }
.auth-card {
    background: rgba(20, 20, 20, 0.9); border-radius: 15px; padding: 30px;
    max-width: 480px; width: 100%; margin: 0 auto;
    border: 1px solid rgba(0, 243, 255, 0.3); box-shadow: 0 0 25px rgba(0, 243, 255, 0.15);
}
.auth-form .form-group { margin-bottom: 18px; }
.auth-form label { display: block; color: #00f3ff; margin-bottom: 6px; font-weight: 600; }
.auth-form input {
    width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.35); border-radius: 8px; color: #fff; font-size: 1rem;
}
.auth-form .form-group { text-align: left; }
.auth-submit {
    display: block;
    width: auto;
    min-width: 220px;
    max-width: 100%;
    margin: 18px auto 0;
}
.auth-form .neon-button.auth-submit {
    margin: 18px auto 0;
    display: block;
}
.auth-benefit { color: #ccc; margin-bottom: 20px; text-align: center; font-size: 0.95rem; }
.auth-benefit i { color: #ff00ff; }
.auth-message { text-align: center; margin-top: 15px; padding: 10px; border-radius: 8px; }
.auth-message.success { color: #0f0; border: 1px solid #0f0; background: rgba(0, 255, 0, 0.1); }
.auth-message.error { color: #f66; border: 1px solid #f66; background: rgba(255, 0, 0, 0.1); }
.profile-section { padding-top: 30px; }
.profile-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; width: 100%; max-width: 1100px;
}
.profile-card {
    background: rgba(20, 20, 20, 0.85); border-radius: 15px; padding: 25px;
    border: 1px solid rgba(0, 243, 255, 0.2); box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}
.profile-card h3 { color: #00f3ff; margin-bottom: 15px; font-size: 1.2rem; }
.profile-card h3 i { margin-right: 8px; color: #ff00ff; }
.profile-card .form-group input { width: 100%; padding: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(0,243,255,.3); border-radius: 6px; color: #fff; margin-bottom: 10px; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #ccc;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    padding: 0;
    accent-color: #00f3ff;
    flex-shrink: 0;
    align-self: center;
}
.checkbox-label span {
    flex: 1;
    line-height: 1.45;
}

@supports (-webkit-touch-callout: none) {
    .checkbox-label input[type="checkbox"] {
        transform: translateY(-2px);
    }
}
.auth-consent {
    margin-top: 14px;
    font-size: 0.9rem;
}
.auth-consent span a {
    color: #00f3ff;
    text-decoration: underline;
}
.btn-small-inline { padding: 10px 25px; font-size: 0.95rem; margin-top: 10px; }
.btn-danger { border-color: #f44 !important; box-shadow: 0 0 15px rgba(255, 68, 68, 0.4) !important; }
.danger-zone { border-color: rgba(255, 68, 68, 0.3) !important; }
.hint-text { color: #888; font-size: 0.9rem; line-height: 1.5; }
.welcome-banner {
    background: rgba(0, 243, 255, 0.1); border: 1px solid #00f3ff; border-radius: 12px;
    padding: 15px 20px; margin-bottom: 25px; text-align: center; max-width: 600px;
    color: #00f3ff; text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}
.coupons-list { display: flex; flex-direction: column; gap: 15px; }
.coupon-card {
    background: rgba(30, 30, 30, 0.6); border-radius: 10px; padding: 15px;
    border-left: 3px solid #00f3ff;
}
.coupon-card.coupon-used { border-left-color: #666; opacity: 0.7; }
.coupon-card.coupon-inactive { border-left-color: #f55; }
.coupon-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.coupon-discount { color: #ff00ff; font-weight: bold; font-size: 1.2rem; }
.coupon-code { font-family: monospace; font-size: 1.1rem; letter-spacing: 1px; color: #00f3ff; }
.coupon-qr {
    margin-top: 12px;
    display: inline-block;
    background: #ffffff;
    padding: 10px;
    border-radius: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.coupon-qr img {
    display: block;
    border-radius: 0 !important;
    image-rendering: pixelated;
}
.coupon-qr canvas {
    border-radius: 0 !important;
}
.site-hours-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.event-card-placeholder {
    border-style: dashed;
    border-color: rgba(255, 0, 255, 0.4);
    text-align: center;
}
.event-card-placeholder .event-title {
    color: #ff00ff;
}
.favorites-list .favorite-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.1);
}
.btn-link { background: none; border: none; color: #ff00ff; cursor: pointer; font-size: 0.85rem; }
.fav-hint-btn {
    background: transparent; border: 1px solid rgba(255,0,255,.4); color: #ff00ff;
    padding: 8px 14px; border-radius: 20px; cursor: pointer; margin-bottom: 15px; font-size: 0.9rem;
}
.fav-hint-btn:hover { box-shadow: 0 0 12px rgba(255,0,255,.3); }
.nav-active { color: #ff00ff !important; text-shadow: 0 0 15px #ff00ff !important; }
.loading-text { color: #00f3ff; text-align: center; }

@media (max-width: 768px) {
    .auth-card { padding: 20px; margin: 0 10px; }
    .profile-grid { grid-template-columns: 1fr; padding: 0 10px; }
}

