/*!* =========================================*/
/*   0. 全局平滑滚动 (实现点击按钮平滑下滑)*/
/*   ========================================= *!*/
/*html {*/
/*    scroll-behavior: smooth;*/
/*}*/

/*!* =========================================*/
/*   1. 基础设置与色彩变量 (深蓝主题 + 霓虹粉/蓝)*/
/*   ========================================= *!*/
/*:root {*/
/*    --bg-color: #060b14;           !* 深蓝/黑底色 *!*/
/*    --text-color: #f0f0f0;*/
/*    --text-muted: #8a9bb2;*/

/*    --primary-blue: #5b92ff;       !* 主题蓝 (用于高亮和按钮) *!*/
/*    --primary-blue-hover: #4078eb;*/

/*    --neon-pink: #ff2a6d;          !* 光斑颜色 1 *!*/
/*    --neon-blue: #05d9e8;          !* 光斑颜色 2 *!*/

/*    !* 卡片玻璃态样式 *!*/
/*    --card-bg: rgba(16, 26, 45, 0.4);*/
/*    --card-border: rgba(91, 146, 255, 0.2);*/
/*}*/

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

/*body {*/
/*    background-color: var(--bg-color);*/
/*    color: var(--text-color);*/
/*    font-family: 'Helvetica Neue', Arial, sans-serif;*/
/*    line-height: 1.6;*/
/*    overflow-x: hidden;*/
/*    position: relative;*/
/*    touch-action: manipulation;*/
/*}*/

/*!* =========================================*/
/*   2. 🌟 模糊光斑 (蓝 + 粉，带呼吸动画)*/
/*   ========================================= *!*/
/*.background-glow-1 {*/
/*    position: fixed;*/
/*    top: -10%; right: -10%;*/
/*    width: 65vw; height: 65vw;*/
/*    background: radial-gradient(circle, rgba(5, 217, 232, 0.35) 0%, rgba(5, 217, 232, 0) 70%);*/
/*    filter: blur(90px);*/
/*    z-index: -1;*/
/*    border-radius: 50%;*/
/*    pointer-events: none;*/
/*    animation: pulseGlow 8s ease-in-out infinite alternate;*/
/*}*/

/*.background-glow-2 {*/
/*    position: fixed;*/
/*    bottom: -15%; left: -15%;*/
/*    width: 75vw; height: 75vw;*/
/*    background: radial-gradient(circle, rgba(255, 42, 109, 0.25) 0%, rgba(255, 42, 109, 0) 70%);*/
/*    filter: blur(120px);*/
/*    z-index: -1;*/
/*    border-radius: 50%;*/
/*    pointer-events: none;*/
/*    animation: pulseGlow 12s ease-in-out infinite alternate-reverse;*/
/*}*/

/*@keyframes pulseGlow {*/
/*    0% { transform: scale(1) translate(0, 0); opacity: 0.85; }*/
/*    100% { transform: scale(1.15) translate(-30px, 30px); opacity: 1; }*/
/*}*/

/*!* =========================================*/
/*   3. 通用样式 (Section & Titles)*/
/*   ========================================= *!*/
/*section {*/
/*    padding: 80px 10%;*/
/*    max-width: 1600px;*/
/*    margin: 0 auto;*/
/*    !* 重要：因为导航栏固定在顶部，这里留出100px的滚动边距，防止锚点跳转时标题被遮挡 *!*/
/*    scroll-margin-top: 120px;*/
/*}*/

/*section h2 {*/
/*    font-size: 2.2rem;*/
/*    margin-bottom: 40px;*/
/*    font-weight: 600;*/
/*    letter-spacing: 2px;*/
/*}*/

/*.highlight {*/
/*    color: var(--primary-blue);*/
/*}*/

/*!* =========================================*/
/*   4. 导航栏 (Navbar) - 固定在顶部，带磨砂玻璃*/
/*   ========================================= *!*/
/*.navbar {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    padding: 20px 10%;*/

/*    position: fixed;*/
/*    width: 100%;*/
/*    top: 0;*/
/*    z-index: 1000;*/

/*    background-color: rgba(6, 11, 20, 0.75);*/
/*    backdrop-filter: blur(15px);*/
/*    -webkit-backdrop-filter: blur(15px);*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.05);*/
/*}*/

/*.logo {*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    color: #fff;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.navbar ul {*/
/*    list-style: none;*/
/*    display: flex;*/
/*    gap: 40px;*/
/*}*/

/*.navbar a {*/
/*    color: var(--text-muted);*/
/*    text-decoration: none;*/
/*    font-size: 0.9rem;*/
/*    font-weight: 600;*/
/*    transition: color 0.3s;*/
/*    letter-spacing: 1px;*/
/*}*/

/*.navbar a:hover, .navbar a.active {*/
/*    color: #fff;*/
/*}*/

/*!* =========================================*/
/*   5. 头部宣传区 (Hero Section)*/
/*   ========================================= *!*/
/*.hero {*/
/*    min-height: 90vh;*/
/*    display: flex;*/
/*    !*align-items: center;*!*/
/*    justify-content: flex-start;*/
/*    !*padding-top: 100px; !* 避开固定导航栏的高度 *!*!*/
/*    align-items: flex-start !important;*/
/*    padding-top: 220px !important;*/
/*}*/

/*.hero-content {*/
/*    max-width: 600px;*/
/*}*/

/*.hero-title {*/
/*    font-size: 4.5rem;*/
/*    line-height: 1.1;*/
/*    margin-bottom: 15px;*/
/*    color: var(--primary-blue);*/
/*    font-weight: 800;*/
/*}*/

/*.hero-subtitle {*/
/*    font-size: 1.2rem;*/
/*    color: #fff;*/
/*    letter-spacing: 3px;*/
/*    margin-bottom: 30px;*/
/*    font-weight: 500;*/
/*}*/

/*.hero-desc {*/
/*    color: var(--text-muted);*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: 40px;*/
/*    line-height: 1.8;*/
/*}*/

/*.hero-buttons {*/
/*    display: flex;*/
/*    gap: 20px;*/
/*    margin-bottom: 40px;*/
/*}*/

/*.btn-primary, .btn-secondary {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    padding: 12px 30px;*/
/*    border-radius: 30px;*/
/*    font-size: 1rem;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.btn-primary {*/
/*    background-color: var(--primary-blue);*/
/*    color: #fff;*/
/*    border: none;*/
/*    box-shadow: 0 0 20px rgba(91, 146, 255, 0.4);*/
/*}*/

/*.btn-primary:hover {*/
/*    background-color: var(--primary-blue-hover);*/
/*    box-shadow: 0 0 30px rgba(91, 146, 255, 0.6);*/
/*}*/

/*.btn-secondary {*/
/*    background-color: transparent;*/
/*    color: #fff;*/
/*    border: 1px solid var(--text-muted);*/
/*}*/

/*.btn-secondary:hover {*/
/*    border-color: #fff;*/
/*}*/

/*.hero-contact {*/
/*    color: var(--text-muted);*/
/*    font-size: 0.95rem;*/
/*}*/
/*.hero-contact strong {*/
/*    color: #fff;*/
/*    text-decoration: underline;*/
/*}*/

/*!* =========================================*/
/*   6. 包厢展示区 (Rooms Section)*/
/*   ========================================= *!*/
/*.rooms-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*    gap: 30px;*/
/*    scroll-margin-top: 300px;*/
/*}*/

/*.room-card {*/
/*    background-color: var(--card-bg);*/
/*    border: 1px solid var(--card-border);*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*    backdrop-filter: blur(10px);*/
/*    transition: transform 0.3s, border-color 0.3s;*/
/*}*/

/*.room-card:hover {*/
/*    transform: translateY(-5px);*/
/*    border-color: var(--primary-blue);*/
/*}*/

/*.room-img {*/
/*    width: 100%;*/
/*    height: 250px;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*    transition: transform 0.5s ease;*/
/*}*/

/*.room-card:hover .room-img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.room-info {*/
/*    padding: 25px;*/
/*}*/

/*.room-header {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.room-header h3 {*/
/*    color: var(--primary-blue);*/
/*    font-size: 1.3rem;*/
/*}*/

/*.price {*/
/*    color: var(--primary-blue);*/
/*    font-weight: bold;*/
/*}*/

/*.capacity {*/
/*    color: #fff;*/
/*    margin-bottom: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.features-list {*/
/*    list-style: none;*/
/*    color: var(--text-muted);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.features-list li {*/
/*    margin-bottom: 8px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.features-list li::before {*/
/*    content: '✦';*/
/*    color: var(--primary-blue);*/
/*    font-size: 0.8rem;*/
/*    margin-right: 10px;*/
/*}*/

/*!* =========================================*/
/*   7. 为什么选择我们 (Why Choose Us)*/
/*   ========================================= *!*/
/*.features-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));*/
/*    gap: 30px;*/
/*}*/

/*.feature-card {*/
/*    background-color: var(--card-bg);*/
/*    border: 1px solid var(--card-border);*/
/*    border-radius: 12px;*/
/*    padding: 40px 20px;*/
/*    text-align: center;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.icon-circle {*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background-color: var(--primary-blue);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto 20px auto;*/
/*    font-size: 1.5rem;*/
/*    color: #fff;*/
/*    box-shadow: 0 0 20px rgba(91, 146, 255, 0.4);*/
/*}*/

/*.feature-card h3 {*/
/*    color: var(--primary-blue);*/
/*    font-size: 1.2rem;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.feature-card p {*/
/*    color: var(--text-muted);*/
/*    font-size: 0.95rem;*/
/*}*/

/*!* =========================================*/
/*   8. 菜单区 (Food & Drinks Menu)*/
/*   ========================================= *!*/
/*.menu-grid-container {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));*/
/*    gap: 40px;*/
/*    margin-top: 120px;*/
/*    scroll-margin-top: 50px;*/
/*}*/

/*.menu-item {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    aspect-ratio: 3 / 4;*/
/*    background-color: var(--card-bg);*/
/*    border: 1px solid var(--card-border);*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*    backdrop-filter: blur(10px);*/
/*    transition: transform 0.3s ease, border-color 0.3s ease;*/
/*}*/

/*.menu-item:hover {*/
/*    transform: translateY(-5px);*/
/*    border-color: var(--primary-blue);*/
/*    box-shadow: 0 10px 30px rgba(91, 146, 255, 0.2);*/
/*}*/

/*.menu-img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*}*/

/*.menu-placeholder-text {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    color: var(--text-muted);*/
/*    font-size: 1.2rem;*/
/*    font-style: italic;*/
/*    pointer-events: none;*/
/*}*/

/*.menu-item img[src]:not([src=""]) + .menu-placeholder-text {*/
/*    display: none;*/
/*}*/

/*!* =========================================*/
/*   9. 访问我们 (Visit Section)*/
/*   ========================================= *!*/
/*.visit-grid {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 40px;*/
/*}*/

/*.contact-info {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*}*/

/*.contact-card {*/
/*    background-color: var(--card-bg);*/
/*    border: 1px solid var(--card-border);*/
/*    border-radius: 12px;*/
/*    padding: 25px;*/
/*    display: flex;*/
/*    align-items: flex-start;*/
/*    gap: 20px;*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.contact-card > i {*/
/*    color: var(--primary-blue);*/
/*    font-size: 1.5rem;*/
/*    margin-top: 5px;*/
/*}*/

/*.contact-title {*/
/*    color: #fff;*/
/*    font-weight: 600;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.contact-desc {*/
/*    color: var(--text-muted);*/
/*    font-size: 0.9rem;*/
/*}*/

/*.hours-list {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 5px;*/
/*    color: var(--text-muted);*/
/*    font-size: 0.9rem;*/
/*    margin-top: 10px;*/
/*}*/

/*.hours-list span {*/
/*    display: inline-block;*/
/*    width: 40px;*/
/*    color: #fff;*/
/*}*/

/*.map-placeholder {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    min-height: 400px;*/
/*    background-color: rgba(0,0,0,0.3);*/
/*    border: 1px solid var(--card-border);*/
/*    border-radius: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    color: var(--text-muted);*/
/*}*/

/*!* =========================================*/
/*   10. 页脚 (Footer)*/
/*   ========================================= *!*/
/*footer {*/
/*    text-align: center;*/
/*    padding: 30px;*/
/*    border-top: 1px solid rgba(255,255,255,0.05);*/
/*    color: var(--text-muted);*/
/*    font-size: 0.9rem;*/
/*    margin-top: 50px;*/
/*}*/

/*!* =========================================*/
/*   📱 移动端适配 (手机专用样式)*/
/*   ========================================= *!*/
/*@media (max-width: 768px) {*/
/*    !* 1. 修复文字被遮挡：给第一屏增加足够的顶部内边距 *!*/
/*    .hero {*/
/*        padding-top: 150px;*/
/*        text-align: center;*/
/*    }*/

/*    .hero-content {*/
/*        margin: 0 auto;*/
/*    }*/

/*    !* 2. 缩小标题字体，适应手机屏幕 *!*/
/*    .hero-title {*/
/*        font-size: 2.8rem;*/
/*        margin-bottom: 10px;*/
/*    }*/

/*    .hero-subtitle {*/
/*        font-size: 1rem;*/
/*        letter-spacing: 1px;*/
/*    }*/

/*    !* 3. 重新排列按钮，取消 100% 宽度，让它们换行显示 *!*/
/*    .hero-buttons {*/
/*        flex-wrap: wrap;*/
/*        justify-content: center;*/
/*        gap: 15px;*/
/*    }*/

/*    .btn-primary, .btn-secondary {*/
/*        width: auto !important;*/
/*        padding: 10px 20px;*/
/*        font-size: 0.95rem;*/
/*    }*/

/*    !* 4. 让网格布局在手机上变成上下排列 *!*/
/*    .rooms-grid, .features-grid, .menu-grid-container, .visit-grid {*/
/*        display: flex;*/
/*        flex-direction: column;*/
/*        gap: 20px;*/
/*    }*/

/*    !* 5. 表格支持横向滑动 *!*/
/*    .admin-table {*/
/*        display: block;*/
/*        overflow-x: auto;*/
/*        white-space: nowrap;*/
/*    }*/

/*    !* 6. 弹窗宽度适配 *!*/
/*    .modal-content {*/
/*        width: 90%;*/
/*        padding: 20px;*/
/*    }*/
/*}*/

/*!* =========================================*/
/*   📱 移动端导航栏修复 (600px 以下)*/
/*   ========================================= *!*/
/*@media (max-width: 600px) {*/
/*    !* 1. 导航栏布局 *!*/
/*    .navbar, .top-nav {*/
/*        flex-direction: column;*/
/*        padding: 15px 10px !important;*/
/*        height: auto !important;*/
/*    }*/

/*    !* 2. Logo 居中 *!*/
/*    .logo {*/
/*        margin-bottom: 15px;*/
/*        font-size: 1.2rem;*/
/*        text-align: center;*/
/*    }*/

/*    !* 3. 菜单项均匀分布 *!*/
/*    nav ul, .nav-links {*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        flex-wrap: wrap;*/
/*        gap: 10px;*/
/*        padding: 0;*/
/*        margin: 0;*/
/*        list-style: none;*/
/*    }*/

/*    !* 4. 菜单文字缩小 *!*/
/*    nav ul li a, .nav-links a {*/
/*        font-size: 0.85rem !important;*/
/*        padding: 5px 8px;*/
/*        margin: 0 !important;*/
/*    }*/
/*    .hero {*/
/*        padding-top: 220px !important; !* 强制把内容往下推 220px *!*/
/*    }*/
/*}*/

/*!* =========================================*/
/*   11. 菜单全屏查看器 (Lightbox)*/
/*   ========================================= *!*/
/*.lightbox-overlay {*/
/*    display: none; !* 默认隐藏 *!*/
/*    position: fixed;*/
/*    z-index: 9999;*/
/*    padding-top: 50px;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0, 0, 0, 0.9); !* 半透明黑底 *!*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    flex-direction: column;*/
/*}*/

/*!* 放大后的图片 *!*/
/*#lightbox-img {*/
/*    max-width: 90%;*/
/*    max-height: 85vh;*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 0 30px rgba(59, 146, 255, 0.3);*/
/*    object-fit: contain;*/
/*    animation: fadeIn 0.3s;*/
/*}*/

/*!* 关闭按钮 (右上角 X) *!*/
/*.lightbox-close {*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: 35px;*/
/*    color: #f1f1f1;*/
/*    font-size: 40px;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*    z-index: 10000;*/
/*}*/

/*.lightbox-close:hover,*/
/*.lightbox-close:focus {*/
/*    color: var(--primary-blue);*/
/*    text-decoration: none;*/
/*    cursor: pointer;*/
/*}*/

/*!* 左右切换箭头 *!*/
/*.lightbox-prev, .lightbox-next {*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    width: auto;*/
/*    padding: 16px;*/
/*    margin-top: -50px;*/
/*    color: white;*/
/*    font-weight: bold;*/
/*    font-size: 30px;*/
/*    transition: 0.3s ease;*/
/*    border-radius: 0 3px 3px 0;*/
/*    user-select: none;*/
/*    -webkit-user-select: none;*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    border: none;*/
/*}*/

/*.lightbox-prev {*/
/*    left: 10px;*/
/*    border-radius: 8px;*/
/*}*/

/*.lightbox-next {*/
/*    right: 10px;*/
/*    border-radius: 8px;*/
/*}*/

/*.lightbox-prev:hover, .lightbox-next:hover {*/
/*    background-color: var(--primary-blue);*/
/*}*/

/*!* 图片渐入动画 *!*/
/*@keyframes fadeIn {*/
/*    from { opacity: 0; transform: scale(0.95); }*/
/*    to { opacity: 1; transform: scale(1); }*/
/*}*/

/*!* 手机端适配：箭头稍微变小一点 *!*/
/*@media (max-width: 768px) {*/
/*    .lightbox-prev, .lightbox-next {*/
/*        padding: 10px;*/
/*        font-size: 20px;*/
/*    }*/
/*    #lightbox-img {*/
/*        width: 100%;*/
/*        max-width: 100%;*/
/*        border-radius: 0;*/
/*    }*/
/*}*/


/*!* =========================================*/
/*   🌟 新增：桌面端的汉堡按钮默认隐藏*/
/*   ========================================= *!*/
/*.hamburger {*/
/*    display: none; !* 默认不显示 *!*/
/*    flex-direction: column;*/
/*    gap: 6px;*/
/*    cursor: pointer;*/
/*    z-index: 1001; !* 保证按钮永远在抽屉的最上层 *!*/
/*}*/

/*!* 汉堡按钮的三条白线 *!*/
/*.hamburger span {*/
/*    width: 30px;*/
/*    height: 3px;*/
/*    background-color: #fff;*/
/*    border-radius: 3px;*/
/*    transition: all 0.3s ease; !* 关键：给所有属性加上平滑过渡动画 *!*/
/*}*/

/*!* =========================================*/
/*   📱 移动端适配：侧边抽屉菜单*/
/*   ========================================= *!*/
/*@media (max-width: 768px) {*/
/*    !* 1. 导航栏始终保持在一行，Logo 在左，汉堡在右 *!*/
/*    .navbar, .top-nav {*/
/*        flex-direction: row !important;*/
/*        justify-content: space-between !important;*/
/*        padding: 15px 20px !important;*/
/*        height: auto !important;*/
/*    }*/

/*    !* 2. 在手机端显示汉堡按钮 *!*/
/*    .hamburger {*/
/*        display: flex;*/
/*    }*/

/*    !* 3. 把菜单变成右侧的隐藏抽屉 (兼容不同页面的写法) *!*/
/*    .navbar ul, .nav-links {*/
/*        display: flex;*/
/*        position: fixed;*/
/*        top: 0;*/
/*        right: -100%; !* 🌟 核心：默认隐藏在屏幕右侧外面 *!*/
/*        width: 280px; !* 🌟 加宽抽屉，防止长文字被挤得太难看 *!*/
/*        height: 100vh; !* 占满屏幕高度 *!*/
/*        background-color: rgba(7, 11, 20, 0.98); !* 🌟 加深磨砂背景，防止背后的字透上来 *!*/
/*        backdrop-filter: blur(20px);*/
/*        -webkit-backdrop-filter: blur(20px);*/

/*        !* 内部链接垂直排列并居中 *!*/
/*        flex-direction: column;*/
/*        justify-content: center !important;*/
/*        align-items: center;*/
/*        gap: 15px !important; !* 缩小 gap，靠 padding 撑开 *!*/

/*        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); !* 丝滑的滑出动画 *!*/
/*        z-index: 1000;*/
/*        border-left: 1px solid rgba(255, 255, 255, 0.1);*/
/*        margin: 0 !important;*/
/*        padding: 0 !important;*/
/*        list-style: none;*/
/*    }*/

/*    !* 4. 当 JS 给它加上 .open 类时，抽屉滑出 *!*/
/*    .navbar ul.open, .nav-links.open {*/
/*        right: 0;*/
/*    }*/

/*    !* 🌟 5. 修复对齐问题：让所有文字绝对居中 *!*/
/*    .navbar ul li {*/
/*        margin: 0 !important;*/
/*        width: 100%; !* 占满整行 *!*/
/*        text-align: center; !* 强制绝对居中！ *!*/
/*    }*/

/*    !* 统一 a 标签的样式 *!*/
/*    .navbar ul li a, .nav-links a {*/
/*        display: block; !* 变成块级元素 *!*/
/*        width: 100%;*/
/*        text-align: center; !* 强制绝对居中！ *!*/
/*        font-size: 1.1rem !important;*/
/*        padding: 15px 20px; !* 用内边距扩大点击区域，提升手感 *!*/
/*        line-height: 1.5; !* 如果折行，行高保持优雅 *!*/
/*        white-space: normal; !* 允许长文字自然折行 *!*/
/*        margin: 0 !important;*/
/*    }*/

/*    !* 6. 汉堡按钮变成 "X" 的精美动画 *!*/
/*    !* 当 JS 给它加上 .toggle 类时触发 *!*/
/*    .hamburger.toggle span:nth-child(1) {*/
/*        transform: translateY(9px) rotate(45deg);*/
/*    }*/
/*    .hamburger.toggle span:nth-child(2) {*/
/*        opacity: 0;*/
/*    }*/
/*    .hamburger.toggle span:nth-child(3) {*/
/*        transform: translateY(-9px) rotate(-45deg);*/
/*    }*/
/*}*/


/* =========================================
   0. 全局平滑滚动 (实现点击按钮平滑下滑)
   ========================================= */
html {
    scroll-behavior: smooth;
}

/* =========================================
   1. 基础设置与色彩变量 (深蓝主题 + 霓虹粉/蓝)
   ========================================= */
:root {
    --bg-color: #060b14;
    --text-color: #f0f0f0;
    --text-muted: #8a9bb2;

    --primary-blue: #5b92ff;
    --primary-blue-hover: #4078eb;

    --neon-pink: #ff2a6d;
    --neon-blue: #05d9e8;

    --card-bg: rgba(16, 26, 45, 0.4);
    --card-border: rgba(91, 146, 255, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    touch-action: manipulation;
}

/* =========================================
   2. 🌟 模糊光斑 (蓝 + 粉，带呼吸动画)
   ========================================= */
.background-glow-1 {
    position: fixed;
    top: -10%; right: -10%;
    width: 65vw; height: 65vw;
    background: radial-gradient(circle, rgba(5, 217, 232, 0.35) 0%, rgba(5, 217, 232, 0) 70%);
    filter: blur(90px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.background-glow-2 {
    position: fixed;
    bottom: -15%; left: -15%;
    width: 75vw; height: 75vw;
    background: radial-gradient(circle, rgba(255, 42, 109, 0.25) 0%, rgba(255, 42, 109, 0) 70%);
    filter: blur(120px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.85; }
    100% { transform: scale(1.15) translate(-30px, 30px); opacity: 1; }
}

/* =========================================
   3. 通用样式 (Section & Titles)
   ========================================= */
section {
    padding: 80px 10%;
    max-width: 1600px;
    margin: 0 auto;
    scroll-margin-top: 120px;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-blue);
}

/* =========================================
   4. 导航栏 (Navbar) & 汉堡按钮
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(6, 11, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.navbar a:hover, .navbar a.active {
    color: #fff;
}

/* 桌面端默认隐藏汉堡按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =========================================
   5. 头部宣传区 (Hero Section)
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center; /* 恢复电脑端的垂直居中 */
    justify-content: flex-start;
    padding-top: 100px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    box-shadow: 0 0 20px rgba(91, 146, 255, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
    box-shadow: 0 0 30px rgba(91, 146, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: #fff;
}

.hero-contact {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.hero-contact strong {
    color: #fff;
    text-decoration: underline;
}

/* =========================================
   6. 包厢展示区 (Rooms Section)
   ========================================= */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    scroll-margin-top: 300px;
}

.room-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.room-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.05);
}

.room-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.room-header h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.price {
    color: var(--primary-blue);
    font-weight: bold;
}

.capacity {
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✦';
    color: var(--primary-blue);
    font-size: 0.8rem;
    margin-right: 10px;
}

.room-book-btn {
    margin-top: 18px;
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 20px;
    border: 1px solid var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.room-book-btn:hover {
    background-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(91, 146, 255, 0.35);
}

/* =========================================
   7. 为什么选择我们 (Why Choose Us)
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(91, 146, 255, 0.4);
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   8. 菜单区 (Food & Drinks Menu)
   ========================================= */
.menu-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 120px;
    scroll-margin-top: 50px;
}

.menu-item {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(91, 146, 255, 0.2);
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    font-style: italic;
    pointer-events: none;
}

.menu-item img[src]:not([src=""]) + .menu-placeholder-text {
    display: none;
}

/* =========================================
   9. 访问我们 (Visit Section)
   ========================================= */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* 防止子元素在窄屏下撑破网格容器 */
.visit-grid > * {
    min-width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Google Map 容器：默认自适应，避免 iframe 固定宽度导致横向溢出 */
.map-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    align-self: start;
}

.map-container iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 400px;
    border: 0;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.contact-card > i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.hours-list span {
    display: inline-block;
    width: 40px;
    color: #fff;
}

.map-placeholder {
    width: 30%;
    height: 100%;
    min-height: 400px;
    max-width: 600px;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* =========================================
   10. 页脚 (Footer)
   ========================================= */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 50px;
}

/* =========================================
   11. 菜单全屏查看器 (Lightbox)
   ========================================= */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(59, 146, 255, 0.3);
    object-fit: contain;
    animation: fadeIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-blue);
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.lightbox-prev { left: 10px; border-radius: 8px; }
.lightbox-next { right: 10px; border-radius: 8px; }
.lightbox-prev:hover, .lightbox-next:hover { background-color: var(--primary-blue); }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* =========================================
   📱 12. 移动端终极整合适配 (核心修正区)
   ========================================= */
@media (max-width: 768px) {
    /* --- 导航栏与汉堡抽屉菜单 --- */
    .navbar, .top-nav {
        flex-direction: row !important;
        justify-content: flex-start !important;
        padding: 15px 20px !important;
        height: auto !important;
    }

    .hamburger {
        display: flex;
        margin-right: auto;
    }

    .navbar ul, .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(7, 11, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center !important;
        align-items: center;
        gap: 15px !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }
    .logo {
        display: none !important;
    }

    .navbar ul.open, .nav-links.open { left: 0; }

    .navbar ul li {
        margin: 0 !important;
        width: 100%;
        text-align: center;
    }

    .navbar ul li a, .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 1.1rem !important;
        padding: 15px 20px;
        line-height: 1.5;
        white-space: normal;
        margin: 0 !important;
    }

    /* 汉堡按钮动画 */
    .hamburger.toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* --- 第一屏 (Hero) 布局修复 --- */
    .hero {
        align-items: flex-start !important;
        padding-top: 110px !important; /* 🌟 核心修改：缩短距离，文字顶上去！ */
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: auto !important;
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* --- 页面其他区块变成单列堆叠 --- */
    .rooms-grid, .features-grid, .menu-grid-container, .visit-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* 地图在手机端进一步收窄高度，避免视觉过高 */
    .map-container {
        width: 100%;
        max-width: 100%;
    }

    .map-container iframe {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    /* --- 后台表格适配 --- */
    .admin-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .modal-content {
        width: 90%;
        padding: 20px;
    }

    /* --- Lightbox 手机端适配 --- */
    .lightbox-prev, .lightbox-next {
        padding: 10px;
        font-size: 20px;
    }
    #lightbox-img {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}
