        /* =========================================
       江湖地图 CSS 绘图
       ========================================= */
        /* --- 桃花岛 画卷 --- */
        .taohua-scene {
            position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 5; overflow: hidden;
        }

        /* 1. 海水波动 (双层波浪) */
        .sea-surface {
            /* 这一层做深色底浪 */
            position: absolute; bottom: 0; width: 200%; height: 60px; /* 宽度200%以便移动 */
            background: #0277bd;
            border-radius: 40% 40% 0 0; /* 巨大的弧形模拟海浪 */
            opacity: 0.8; z-index: 1;
            left: -50%;
            animation: wave-flow 6s linear infinite alternate;
        }
        /* 增加一层浅色顶浪 */
        .sea-surface::before {
            content: ''; position: absolute; bottom: 5px; left: -20px;
            width: 110%; height: 50px;
            background: rgba(79, 195, 247, 0.6); /* 浅蓝 */
            border-radius: 45% 45% 0 0;
            animation: wave-flow-reverse 8s linear infinite alternate;
        }

        @keyframes wave-flow {
            0% { transform: translateX(-20px) translateY(5px); }
            100% { transform: translateX(20px) translateY(0px); }
        }
        @keyframes wave-flow-reverse {
            0% { transform: translateX(10px) scaleY(0.9); }
            100% { transform: translateX(-30px) scaleY(1.1); }
        }

        /* 2. 桃花树干 */
        .tree-trunk {
            position: absolute; bottom: 20px; right: 0px; /* 树在右下角 */
            width: 60px; height: 180px;
            background: #5d4037;
            border-radius: 100% 0 0 0; /* 弯曲的树干 */
            transform: skewX(-10deg);
            z-index: 2;
        }
        .tree-branch {
            position: absolute; top: 30px; left: -40px;
            width: 60px; height: 10px; background: #5d4037;
            transform: rotate(-20deg); border-radius: 5px;
        }

        /* 3. 繁茂的桃花丛 (用粉色圆球堆叠) */
        .blossom-cluster {
            position: absolute; border-radius: 50%;
            background: radial-gradient(circle, #f8bbd0 20%, #f48fb1 80%);
            box-shadow: 0 0 10px #fce4ec;
            z-index: 3;
        }
        .b1 { top: -20px; right: -20px; width: 120px; height: 100px; }
        .b2 { top: 20px; right: 40px; width: 90px; height: 80px; }
        .b3 { top: -40px; right: 40px; width: 100px; height: 90px; }
        .b4 { top: 50px; right: -10px; width: 80px; height: 70px; }

        /* 4. 飘落的花瓣 */
        .petal {
            position: absolute; background: #f06292;
            width: 8px; height: 8px; border-radius: 80% 0 50% 0;
            opacity: 0.8; z-index: 4;
            animation: fall linear infinite;
        }
        /* 定义不同花瓣的起始位置和动画时长 */
        .p1 { top: 10%; left: 80%; animation-duration: 4s; animation-delay: 0s; }
        .p2 { top: 20%; left: 90%; animation-duration: 5s; animation-delay: 1s; }
        .p3 { top: 15%; left: 70%; animation-duration: 6s; animation-delay: 2s; }
        .p4 { top: 5%;  left: 60%; animation-duration: 7s; animation-delay: 0.5s; }
        
        @keyframes fall {
            0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 1; }
            100% { transform: translateY(250px) translateX(-50px) rotate(360deg); opacity: 0; }
        }

        /* --- 蒙古荒山夜景 画卷 --- */
        .mongolia-scene {
            position: absolute; bottom: 0; right: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 5;
        }

        /* 1. 险恶的黑山 (利用多边形裁剪) */
        .evil-mountain {
            position: absolute; bottom: 20px; right: 10px;
            width: 200px; height: 120px;
            background: linear-gradient(to bottom, #424242, #000);
            /* 画出尖锐的山峰形状 */
            clip-path: polygon(
                0% 100%, 10% 70%, 25% 100%, 
                30% 50%, 45% 90%, 
                60% 20%, 75% 80%, 
                90% 40%, 100% 100%
            );
            z-index: 2; opacity: 0.9;
        }
        
        /* 2. 冷月 */
        .cold-moon {
            position: absolute; top: 30px; right: 40px;
            width: 50px; height: 50px;
            background: #fdfbf7;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); /* 皎洁的月光 */
            z-index: 1;
        }
        
        /* 3. 荒地沙丘 */
        .desert-ground {
            position: absolute; bottom: 0; width: 100%; height: 25px;
            background: #3e2723; /* 深褐色土地 */
            border-radius: 50% 50% 0 0 / 100% 100% 0 0; /* 弧形地面 */
            transform: scaleX(1.5);
            z-index: 2;
        }

        /* --- 蒙古荒山动态特效 --- */
        
        /* 1. 骷髅：左右飘荡 + 微微旋转 */
        .mongol-skull {
            position: absolute; bottom: 20px; right: 150px; 
            font-size: 30px; z-index: 5; opacity: 0.9;
            animation: ghost-float 6s ease-in-out infinite;
        }
        @keyframes ghost-float {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            50% { transform: translateX(-40px) translateY(-15px) rotate(-15deg); } /* 向左飘 */
            100% { transform: translateX(0) translateY(0) rotate(0deg); }
        }

        /* 2. 鬼火：忽明忽暗 + 变大变小 */
        .mongol-fire {
            position: absolute; bottom: 30px; right: 40px; 
            font-size: 24px; z-index: 5;
            animation: fire-burn 2s ease-in-out infinite alternate;
        }
        @keyframes fire-burn {
            0% { opacity: 0.5; transform: scale(1); filter: drop-shadow(0 0 5px orange); }
            100% { opacity: 1; transform: scale(1.3); filter: drop-shadow(0 0 15px red); }
        }

        /* 3. 星星：闪烁 */
        .mongol-star {
            position: absolute; color: #fff; opacity: 0.5;
            animation: star-twinkle 3s linear infinite;
        }
        .s1 { top: 20%; left: 20%; font-size: 10px; animation-delay: 0s; }
        .s2 { top: 10%; left: 50%; font-size: 8px; animation-delay: 1.5s; }
        .s3 { top: 30%; left: 10%; font-size: 12px; animation-delay: 0.5s; }
        
        @keyframes star-twinkle {
            0%, 100% { opacity: 0.2; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); text-shadow: 0 0 5px white; }
        }
        
        /* --- 嘉兴醉仙楼专属 画卷 --- */
        .jiaxing-scene {
            position: absolute; bottom: 10px; right: 20px;
            width: 160px; height: 140px;
            z-index: 5; pointer-events: none; /* 纯装饰，不挡点击 */
        }

        /* 1. 建筑主体 */
        .inn-building {
            position: absolute; bottom: 10px; left: 20px;
            width: 120px; display: flex; flex-direction: column; align-items: center;
        }

        /* 二层屋顶 (飞檐) */
        .inn-roof-top {
            width: 110%; height: 25px; background: #37474F;
            border-radius: 20px 20px 0 0;
            position: relative; margin-bottom: -2px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
            /* 利用伪元素做翘角 */
        }
        .inn-roof-top::before, .inn-roof-top::after {
            content: ''; position: absolute; bottom: 0; width: 15px; height: 15px;
            background: #37474F;
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }
        .inn-roof-top::before { left: -8px; transform: rotate(10deg); }
        .inn-roof-top::after { right: -8px; transform: scaleX(-1) rotate(10deg); }

        /* 二层楼身 */
        .inn-floor-2 {
            width: 80%; height: 35px; background: #5D4037;
            border-left: 4px solid #8D6E63; border-right: 4px solid #8D6E63;
            position: relative; display: flex; justify-content: center; align-items: center;
        }
        /* 牌匾 */
        .inn-sign {
            background: #212121; color: #FFD700; font-size: 10px; padding: 1px 3px;
            border: 1px solid #8D6E63; writing-mode: horizontal-tb; transform: scale(0.8);
            box-shadow: 0 0 5px gold;
        }
        /* 红灯笼 */
        .inn-lantern {
            position: absolute; top: 2px; width: 8px; height: 10px;
            background: #d32f2f; border-radius: 4px;
            box-shadow: 0 0 5px #ff5252;
            animation: swing 3s ease-in-out infinite;
        }
        .inn-lantern.left { left: 5px; }
        .inn-lantern.right { right: 5px; }
        @keyframes swing { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

        /* 一层屋檐 (短一点) */
        .inn-roof-mid {
            width: 100%; height: 15px; background: #455A64;
            border-radius: 10px 10px 0 0; margin-bottom: -1px; z-index: 2;
        }

        /* 一层楼身 */
        .inn-floor-1 {
            width: 90%; height: 40px; background: #4E342E;
            border-left: 5px solid #3E2723; border-right: 5px solid #3E2723;
            position: relative;
            background-image: linear-gradient(90deg, transparent 50%, rgba(0,0,0,0.2) 50%);
            background-size: 20px 100%; /* 模拟柱子 */
        }
        /* 大门 */
        .inn-door {
            position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 24px; height: 30px; background: #1a1a1a;
            border-top: 2px solid #5D4037;
        }

        /* 装饰用大酒缸 */
        .wine-jar-large {
            position: absolute;
            bottom: 15px; /* 放在地面上 */
            left: 0px;    /* 放在醉仙楼建筑主体的左侧 */
            width: 32px;
            height: 40px;
            background: #795548; /* 陶土棕色 */
            border-radius: 40% 40% 30% 30% / 50% 50% 30% 30%; /* 圆滚滚的坛身 */
            box-shadow: inset -3px -3px 5px rgba(0,0,0,0.3), 2px 2px 3px rgba(0,0,0,0.3); /* 简单的立体感 */
            z-index: 7; /* 确保在建筑和水面之上 */
        }
        /* 酒缸盖子和红布泥封 */
        .wine-jar-large::before {
            content: '';
            position: absolute;
            top: -4px; left: 50%;
            transform: translateX(-50%);
            width: 18px; height: 6px;
            background: #5d4037; /* 深色盖子 */
            border-radius: 3px;
            border-top: 3px solid #c62828; /* 顶部红布泥封 */
        }
        /* 贴个“酒”字标签 (可选，为了极简也可以去掉) */
        .wine-jar-large::after {
            content: '酒';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0.7);
            font-size: 12px; color: #3e2723;
            font-weight: bold; opacity: 0.7;
        }

        /* 1. 醉仙楼：竹叶摇曳 */
        .willow {
            /* 设定旋转支点在底部，这样像树根扎在地上，树梢在动 */
            transform-origin: bottom center;
            animation: bamboo-sway 4s ease-in-out infinite alternate;
        }
        @keyframes bamboo-sway {
            0% { transform: scaleX(-1) rotate(0deg); } /* 保持原本的镜像翻转 */
            100% { transform: scaleX(-1) rotate(10deg); } /* 微微向右倾斜 */
        }

        /* 2. 醉仙楼：酒缸红飘带 */
        .jar-ribbon {
            position: absolute; top: -2px; left: 14px; /* 挂在封泥口 */
            width: 4px; height: 18px;
            background: #d32f2f;
            transform-origin: top center; /* 挂点不动，下摆动 */
            animation: ribbon-flutter 2s ease-in-out infinite alternate;
            z-index: 8; border-radius: 2px;
        }
        @keyframes ribbon-flutter {
            0% { transform: rotate(-15deg) skewX(5deg); }
            100% { transform: rotate(15deg) skewX(-5deg); }
        }

        /* 2. 水乡环境 */
        .water-base {
            position: absolute; bottom: 0; width: 100%; height: 15px;
            background: linear-gradient(to bottom, #4fc3f7, #0288d1);
            opacity: 0.6; z-index: 1; border-radius: 0 0 8px 8px;
        }
        .willow {
            position: absolute; left: -10px; bottom: 10px; font-size: 60px; z-index: 10;
            filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.5));
            transform: scaleX(-1); /* 柳树向右飘 */
        }
        .boat {
            position: absolute; bottom: 5px; right: 50px; font-size: 24px;
            animation: boat-float 5s ease-in-out infinite; z-index: 6;
        }
        @keyframes boat-float { 0%,100% { transform: translateX(0); } 50% { transform: translateX(10px); } }
        /* --- 可视化地图样式 --- */
        .world-map-container {
            position: relative; width: 100%; height: 300px; /* 地图高度 */
            background: #eee; border-radius: 8px; overflow: hidden;
            margin-bottom: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
            border: 2px solid #555;
        }
        
        /* 地图背景装饰 (简易手绘风) */
        .map-bg-deco {
            position: absolute; width: 100%; height: 100%; pointer-events: none; 
            /* opacity: 0.3;  <-- 这行删掉！ */
            z-index: 1; /* 确保它在背景之上，但在据点之下 */
        }        
        /* 地点节点 */
        .map-point {
            position: absolute; transform: translate(-50%, -50%);
            display: flex; flex-direction: column; align-items: center; cursor: pointer;
            transition: 0.2s; z-index: 10;
        }
        .map-point:hover { transform: translate(-50%, -60%) scale(1.1); z-index: 20; }
        .map-point:active { transform: translate(-50%, -50%) scale(0.95); }
        
        .point-icon {
            font-size: 28px; width: 40px; height: 40px; 
            background: #fff; border-radius: 50%; border: 2px solid #555;
            display: flex; justify-content: center; align-items: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .point-name {
            background: rgba(0,0,0,0.7); color: #fff; padding: 2px 6px; 
            border-radius: 4px; font-size: 10px; margin-top: 4px; white-space: nowrap;
        }
        
        /* 类型颜色区分 */
        .point-team .point-icon { border-color: #1565c0; color: #1565c0; }
        .point-plot .point-icon { border-color: #d32f2f; color: #d32f2f; }
        
        /* 选中特效 */
        .map-point.selected .point-icon {
            background: #FFD700; border-color: #fff; box-shadow: 0 0 15px #FFD700;
            animation: bounce 1s infinite;
        }
        
        /* 连线 Canvas */
        #map-canvas {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
        }    
        /* --- 副本/地图系统 --- */
        .map-chapter {
            margin-bottom: 20px; border: 1px solid #444; border-radius: 8px; overflow: hidden;
        }
        .map-chapter-title {
            background: #333; padding: 10px 15px; font-weight: bold; color: var(--highlight);
            border-bottom: 1px solid #444; display: flex; justify-content: space-between;
        }
        .map-node {
            padding: 15px; border-bottom: 1px solid #333; background: #252525;
            display: flex; flex-direction: column; gap: 5px; cursor: pointer; transition: 0.2s;
        }
        .map-node:last-child { border-bottom: none; }
        .map-node:hover { background: #2d2d2d; }
        
        header {
            /* ...原有样式... */
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            flex-wrap: nowrap; /* 核心：禁止换行 */
            overflow-x: auto;  /* 极端情况下允许左右滑动，但绝不破坏布局 */
            white-space: nowrap;
        }
        /* 隐藏滚动条但保留功能 */
        header::-webkit-scrollbar { display: none; }

        .node-name { font-size: 15px; font-weight: bold; color: #eee; }
        .node-type { font-size: 10px; padding: 2px 6px; border-radius: 4px; }
        .type-team { background: #1565c0; color: #fff; } /* 团队蓝色 */
        .type-plot { background: #d32f2f; color: #fff; } /* 剧情红色 */
        
        .node-desc { font-size: 12px; color: #888; line-height: 1.4; }
        .node-req { font-size: 11px; color: #ffca28; margin-top: 5px; }
/* =========================================
   🏯 副本 HUD 终极修正版 v8.0
   (瘦身版陆地：船入水，楼贴岸，缸贴楼)
   ========================================= */

/* 1. 全屏容器 */
#dungeon-hud {
    position: fixed !important; top: 0; left: 0; width: 100vw; 
    
    /* 🔥🔥🔥 核心修复 🔥🔥🔥 */
    height: 100vh;       /* 兜底：旧设备 */
    height: 100dvh;      /* 新标准：自动减去浏览器地址栏的高度 */
    
    z-index: 99999 !important;
    background-color: #87CEEB;
    overflow: hidden;
    font-family: "Microsoft YaHei", sans-serif;
    
    /* 🔥 防止 iPhone 底部小黑条遮挡内容 */
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: border-box; 
}

/* 2. 背景层 (天空) */
.hud-bg-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; 
    pointer-events: none; 
    background: linear-gradient(to bottom, #4fc3f7 0%, #e1f5fe 60%, #81d4fa 100%);
}

/* 3. 场景画卷 */
.jiaxing-scene {
    position: absolute; 
    bottom: 0; left: 0; width: 100%; height: 100%; 
    z-index: 10;
    pointer-events: none;
}

/* --- 水面 (铺满底部) --- */
.jiaxing-scene .water-base {
    position: absolute;
    bottom: 0; left: 0; width: 100%; 
    height: 280px; 
    background: linear-gradient(to bottom, #29b6f6 0%, #01579b 100%);
    z-index: 1;
    opacity: 0.9;
}

/* --- 陆地 (大幅缩小，防止船搁浅) --- */
.jiaxing-scene .land-base {
    position: absolute;
    bottom: 0; right: 0;
    /* 🔥 宽度减小到 260px，给左侧留出足够水域放船 */
    width: 260px; 
    height: 420px; 
    background: linear-gradient(110deg, #66bb6a 0%, #33691e 100%);
    border-top-left-radius: 100% 40%; 
    z-index: 2;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.2);
}

/* --- 翠竹 (紧贴最右边缘) --- */
.jiaxing-scene .willow {
    position: absolute;
    bottom: 188px !important; 
    /* 稍微藏到屏幕外面一点，作为背景 */
    right: -5px !important;  
    left: auto !important;
    z-index: 12;
    font-size: 70px;
    
    animation: bamboo-sway-hud 5s ease-in-out infinite alternate !important;
    transform-origin: bottom center;
    transform: rotate(0deg); 
}

/* --- 醉仙楼 (紧贴岸边/屏幕右侧) --- */
.jiaxing-scene .inn-building {
    position: absolute;
    bottom: 280px !important; 
    /* 🔥 靠右：距离屏幕右侧仅 20px */
    right: 20px !important;    
    left: auto !important;
    z-index: 10;
    transform: scale(0.9);
    transform-origin: bottom center;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.3));
}

/* --- 酒缸 (紧紧贴住楼) --- */
.jiaxing-scene .wine-jar-large {
    position: absolute;
    bottom: 270px !important;
    /* 🔥 紧贴：楼(20px) + 楼宽/间隙 = 140px，视觉上几乎挨在一起 */
    right: 140px !important;  
    left: auto !important;
    transform: scale(0.65) rotate(5deg);
    z-index: 11;
}

@keyframes bamboo-sway-hud {
    0% { transform: rotate(-3deg); }
    100% { transform: rotate(8deg); }
}

/* --- 小船 (左侧水面漂浮) --- */
.jiaxing-scene .boat {
    position: absolute;
    bottom: 160px; 
    left: 8%; /* 稍微往左靠一点，避开缩小的陆地 */
    z-index: 5;
    font-size: 45px;
    animation: boat-float 3s ease-in-out infinite alternate;
}

/* 4. UI 交互层 */
.hud-ui-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 100;
    display: flex; flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

/* 5. 顶部栏 */
.hud-top-bar {
    background: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(4px);
    padding: 10px 15px; 
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    height: 60px; flex-shrink: 0;
    pointer-events: auto;
}
.hud-info-box { flex: 1; overflow: hidden; margin-right: 10px; }
.hud-info-box h2 { margin: 0; color: #FFD700; font-size: 16px; font-weight: bold; }
.hud-info-box p { margin: 0; color: #ddd; font-size: 12px; }

.hud-controls { display: flex; gap: 8px; }
.btn-hud-top {
    border: none; padding: 6px 12px; border-radius: 4px; color: #fff; font-weight: bold; cursor: pointer;
    font-size: 12px; display: flex; align-items: center;
}
.btn-temp-leave { background: #1565c0; border: 1px solid #42a5f5; }
.btn-give-up { background: #c62828; border: 1px solid #ef5350; }

/* 6. 中间操作区 */
.hud-center-action {
    flex: 1; 
    display: flex; flex-direction: column; 
    justify-content: center; align-items: center;     
    margin-bottom: 180px; 
    pointer-events: none; 
}

.hud-status-text {
    font-size: 24px; color: #fff; font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.9);
    margin-bottom: 30px;
    background: rgba(0,0,0,0.6); padding: 8px 25px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    pointer-events: auto;
}

#btn-dungeon-fight {
    pointer-events: auto; 
    flex: 0 0 auto;
    width: auto; height: auto; align-self: center;
    min-width: 160px;
    background: linear-gradient(180deg, #d32f2f 0%, #b71c1c 100%);
    border: 2px solid #fff;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.6);
    color: white; padding: 15px 40px; border-radius: 50px;
    font-size: 22px; font-weight: bold; cursor: pointer;
    transition: transform 0.1s;
}
#btn-dungeon-fight:active { transform: scale(0.95); }

/* 7. 底部队伍栏 */
.hud-bottom-panel {
    height: 140px; flex-shrink: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    display: flex; flex-direction: column;
    z-index: 300;
    pointer-events: auto;
    
    /* 🔥🔥🔥 核心修复：增加底部安全边距 🔥🔥🔥 */
    /* 这样底部的头像就不会贴着屏幕边缘，留出操作空间 */
    padding-bottom: env(safe-area-inset-bottom); 
    
    /* 如果觉得挤，可以适当增加总高度，比如改成 height: auto 或 min-height: 140px */
}

.hud-roster-header {
    padding: 8px 15px; font-size: 12px; color: #aaa;
    display: flex; justify-content: space-between;
    background: rgba(255,255,255,0.05);
}
#hud-roster {
    flex: 1; display: flex; align-items: center;
    gap: 12px; padding: 0 15px; overflow-x: auto;
}
#hud-roster::-webkit-scrollbar { display: none; }

.hud-card {
    flex: 0 0 70px; height: 90px;
    background: #222; border: 1px solid #555; border-radius: 6px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: 0.2s;
}
.hud-card.active {
    border-color: #FFD700; background: #3e2723; transform: translateY(-5px);
    box-shadow: 0 0 10px #FFD700;
}
.hud-card.dead { filter: grayscale(100%); opacity: 0.6; }

/* 飞鸟与船的动画 */
@keyframes flyRight {
    0% { left: -10%; transform: scaleX(-1); }
    100% { left: 110%; transform: scaleX(-1); }
}
@keyframes flyLeft {
    0% { left: 110%; transform: scaleX(1); }
    100% { left: -10%; transform: scaleX(1); }
}
@keyframes boat-float {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(5px) rotate(-2deg); }
}
#custom-modal-overlay {
    z-index: 100000 !important;
}