﻿#footprint-page {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    /* 全局变量定义 */
    --hsla-raw: var(--footprint-hsla);
    --primary-color: hsl(var(--hsla-raw));
    --primary-hover: hsla(var(--hsla-raw), 0.8);
    --text-color: #000000;
    --text-light: #666;
    --bg-color: #fff;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --primary-color-hover: hsla(var(--hsla-raw), 0.7);
    --primary-color-active: hsla(var(--hsla-raw), 0.9);
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --font-family-slogn: "快看世界体", sans-serif;
    /* 足迹页面特定变量 */
    --footprint-primary-color: hsl(var(--hsla-raw));
    --footprint-primary-color-light: hsl(var(--hsla-h), var(--hsla-s), calc(var(--hsla-l) + 10%));
    --footprint-primary-color-dark: hsl(var(--hsla-h), var(--hsla-s), calc(var(--hsla-l) - 10%));
    /* 基础样式 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
}
#footprint-page * {
    box-sizing: border-box;
}
/* 波纹效果 */
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    transform: scale(0);
    opacity: 1;
    z-index: 0;
}
@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
/* 工具提示 */
.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(30, 41, 59, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: rgba(30, 41, 59, 0.9) transparent transparent transparent;
}
.tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* 按钮进入动画 */
.animate-in {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform, opacity;
}
/* 按钮点击脉冲效果 */
.btn-pulse {
    animation: btn-pulse 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--hsla-raw), 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(var(--hsla-raw), 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--hsla-raw), 0);
    }
}
#footprint-page .footprint-container {
    width: 100%;
    height: 100vh;
    position: relative;
    content-visibility: auto;
    contain: layout style paint;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    overflow: hidden;
}
#footprint-page #footprint-map {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    transition: var(--transition);
    overflow: hidden;
}
#footprint-map.map-transitioning {
    filter: brightness(0.95);
}
#footprint-map.map-shake {
    animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}
/* Logo 容器样式优化 */
.logo-container {
    top: calc(30px + var(--safe-top));
    left: calc(30px + var(--safe-left));
    position: fixed;
    left: 30px;
    top: 30px;
    z-index: 100;
    padding: 16px 20px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.footprint-logo {
    position: relative;
    display: flex;
    align-items: center;
    font-family: "快看世界体", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: hsl(var(--hsla-raw));
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: var(--text-shadow);
}
.logo-version {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform-origin: left center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.logo-container:hover .logo-version {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}
.footprint-slogan {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    max-width: 240px;
    position: relative;
    padding-left: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}
.logo-container.show .footprint-slogan {
    opacity: 1;
    transform: translateY(0);
}
.footprint-slogan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
    hsla(var(--hsla-raw), 0.8),
    hsla(var(--hsla-raw), 0.4)
    );
    border-radius: 1px;
}
/* 地图控件样式 */
.map-controls {
    bottom: calc(20px + var(--safe-bottom));
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;

    border-radius: 10px;
    padding: 10px 14px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: center bottom;
}
.map-controls:hover {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 39, 0.7);
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
}
.zoom-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 4px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.zoom-buttons:hover {
    background: rgba(255, 255, 255, 0.1);
}
.zoom-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}
.zoom-btn:hover {
    background: var(--primary-color, #42b983);
    color: #fff;
    box-shadow: 0 8px 18px rgba(66, 185, 131, 0.22), inset 0 1px 3px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}
.zoom-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(var(--hsla-raw), 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
.zoom-btn:active::after {
    opacity: 1;
    transform: scale(15) translate(-50%, -50%);
    transition: all 0.5s ease-out;
}
.zoom-btn:active {
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    transform: scale(0.96);
}
#zoom-restore, #messageBoards {
    padding: 9px 14px;
    min-height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#zoom-restore:hover, #messageBoards:hover {
    background: var(--primary-color, #42b983);
    color: #fff;
    box-shadow: 0 8px 18px rgba(66, 185, 131, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}
#zoom-restore::after, #messageBoards::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(var(--hsla-raw), 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
#zoom-restore:active::after, #messageBoards:active::after {
    opacity: 1;
    transform: scale(20) translate(-50%, -50%);
    transition: all 0.5s ease-out;
}
#zoom-restore:active, #messageBoards:active {
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    transform: scale(0.97);
}
/*.amap-scale-text {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 8px;
}*/
/* 移动端适配 */
@media screen and (max-width: 768px) {
    /* 调整移动端的 logo-container */
    .logo-container {
    top: calc(30px + var(--safe-top));
    left: calc(30px + var(--safe-left));
        bottom: 10px;
        left: 10px;
        max-width: 200px;
        max-height: 80px;
    }
    .map-controls {
    bottom: calc(20px + var(--safe-bottom));
        flex-wrap: wrap !important;
        width: min(92vw, 720px);
        justify-content: center !important;
        row-gap: 8px !important;
        padding: 8px !important;
        border-radius: 16px !important;
        gap: 8px !important;
        font-size: 12px !important;
    }
    .drawer {
        width: 100%;
        right: -100%;
    }
    .drawer-content {
        padding: 20px;
    }
    .timeline-card {
        /*padding: 14px;*/
        padding: 12px;
        min-height: 160px;
    }
    .timeline-card .card-header {
        font-size: 16px;
    }
    .timeline-card .card-description {
        font-size: 12px;
    }
    .timeline-card .view-button {
        padding: 4px 10px;
        font-size: 12px;
    }
    #zoom-restore, #messageBoards, #timeline-btn {
        padding: 8px 12px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        min-height: 32px !important;
    }
    .zoom-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
    }
    #timeline-btn {
        order: 1;
        flex: 1 1 40%;
        justify-content: center;
    }
    #messageBoards {
        order: 2;
        flex: 1 1 40%;
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .zoom-buttons,
    .button-group,
    #zoom-restore,
    #line {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        justify-content: center;
        margin-top: 0;
    }
    .control-btn {
        padding: 8px 12px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        min-width: 0 !important;
    }
}
/* 完全隐藏比例尺 */
.amap-scale,
.amap-scale-line {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    z-index: -9999 !important;
    pointer-events: none !important;
}
/* 信息窗口样式 */
.info-window {
    width: 220px;
    height: 280px;
    background: white;
    border-radius: 20px;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0;
    transform: translateY(10px);
    animation: infoWindowShow 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
    touch-action: manipulation; /* 优化触摸操作 */
}
.info-window .image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*pointer-events: none;*/
}
.info-window .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-window .image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}
.info-window .title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.info-window .description {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 12px 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-window .meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 12px;
}
.info-window .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.info-window .meta svg {
    width: 12px;
    height: 12px;
    opacity: 0.9;
}
.info-window .article-btn {
    --primary-color: rgba(255, 255, 255, 0.9);
    --secondary-color: rgba(0, 0, 0, 0.8);
    --hover-color: #fff;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 8px 16px;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s all;
    align-items: center;
    gap: 0.6em;
    font-weight: 500;
    font-size: 13px;
    backdrop-filter: blur(4px);
    text-decoration: none;
}
.info-window .article-btn .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.info-window .article-btn .arrow {
    margin-top: 1px;
    width: 0;
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}
.info-window .article-btn .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 0;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}
.info-window .article-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.info-window .article-btn:hover .arrow {
    width: var(--arrow-width);
}
.info-window .article-btn:hover .arrow:before {
    right: 0;
}
.info-window .time-close-btn {
    display: none;
}
@keyframes infoWindowShow {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* 隐藏高德地图默认的关闭按钮 */
.amap-info-close {
    display: none !important;
}
/* 隐藏高德地图默认的信息窗体样式 */
.amap-info-content {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.amap-info-outer,
.amap-info-inner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.amap-info-sharp {
    display: none !important;
}
/* 标记点样式 */
/* ===== 水滴标记（pin，默认） ===== */
.marker-style-pin .custom-marker {
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50% 50% 50% 0.5em;
    border: 4px solid var(--bg-color);
    transform: rotate(-45deg);
    background: var(--bg-color);
    -webkit-tap-highlight-color: transparent;
}
.marker-style-pin .marker-image {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bg-color);
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: var(--transition);
    position: relative;
}
.marker-style-pin .marker-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: transparent;
    z-index: -1;
}
.marker-style-pin .marker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(45deg);
    transition: var(--transition);
}
.marker-style-pin .custom-marker:hover .marker-image,
.marker-style-pin .custom-marker:active .marker-image {
    transform: scale(1.15);
    box-shadow: 0 4px 12px var(--shadow-color);
}
.marker-style-pin .marker-badge,
.marker-style-pin .marker-label,
.marker-style-pin .marker-arrow { display: none; }

/* ===== 简约圆形 + 徽章（circle） ===== */
.marker-style-circle .custom-marker {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.marker-style-circle .custom-marker:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
.marker-style-circle .marker-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid hsl(var(--hsla-raw));
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s ease;
    position: relative;
}
.marker-style-circle .custom-marker:hover .marker-image {
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.marker-style-circle .marker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.marker-style-circle .marker-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: hsl(var(--hsla-raw));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    pointer-events: none;
    user-select: none;
}
.marker-style-circle .marker-label,
.marker-style-circle .marker-arrow { display: none; }

/* ===== 卡片标记（card） ===== */
.marker-style-card .custom-marker {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: transform 0.2s ease, filter 0.2s ease;
}
.marker-style-card .custom-marker:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.marker-style-card .marker-label {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px 4px 0 0;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
.marker-style-card .marker-image {
    width: 50px;
    height: 36px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: none;
    position: relative;
}
.marker-style-card .custom-marker:hover .marker-image {
    box-shadow: none;
}
.marker-style-card .marker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.marker-style-card .marker-arrow {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.75);
}
.marker-style-card .marker-badge { display: none; }
/* 移除地图 Logo */
.amap-logo {
    display: none !important;
}
.amap-copyright {
    display: none !important;
}
/* 主题控制样式 */
.theme-control {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.theme-label {
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    margin-right: 8px;
}
.theme-select {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 4px;
    padding: 6px 24px 6px 8px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(0, 0, 0, 0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}
.theme-select:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.9);
}
.theme-select:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.9);
}
/* 按钮点击效果 */
.control-btn.btn-clicked {
    transform: scale(0.95) translateZ(0);
    opacity: 0.9;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* 加载指示器样式 */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
.loading-indicator.fade-out {
    opacity: 0;
}
.loading-content {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loading-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.loading-progress {
    font-size: 14px;
    color: #666;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* 动画定义 */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes colorFadeIn {
    0% {
        opacity: 0;
        color: rgba(0, 0, 0, 0.2);
    }
    50% {
        opacity: 1;
        color: rgba(0, 0, 0, 0.5);
    }
    100% {
        opacity: 1;
        color: var(--primary-color);
    }
}
@keyframes controlsFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes buttonColorFadeIn {
    0% {
        background: rgba(0, 0, 0, 0.1);
    }
    100% {
        background: var(--primary-color);
    }
}
/* 控制栏动画 */
.map-controls {
    bottom: calc(20px + var(--safe-bottom));
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s ease-out;
}
.map-controls.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.control-btn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease-out;
}
.control-btn.show {
    opacity: 1;
    transform: scale(1);
}
.control-btn.scale-in {
    animation: scaleIn 0.3s ease-out;
}
.zoom-controls button {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease-out;
}
.zoom-controls button.show {
    opacity: 1;
    transform: translateX(0);
}
.zoom-controls button.slide-in {
    animation: slideIn 0.3s ease-out;
}
/* 按钮点击动画 */
.btn-pulse {
    animation: pulse 0.3s ease-out;
}
/* 动画关键帧 */
@keyframes scaleIn {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}
.control-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.control-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.control-btn:active::after {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
}
.control-btn.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(var(--hsla-raw), 0.4);
}
#footprint-page {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    --primary-color: hsl(var(--footprint-hsla, 200, 100%, 50%));
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}
#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3; /* 确保 canvas 位于下方 */
    pointer-events: none; /* 允许点击通过 */
}
.footprint-container {
    position: relative;
    z-index: 2; /* 确保 footprint-container 是 above */
}
/* Logo和描述 */
.logo-container {
    top: calc(30px + var(--safe-top));
    left: calc(30px + var(--safe-left));
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    max-width: 300px;
    max-height: 100px;
}
.footprint-logo {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.logo-version {
    font-size: 0.8rem;
    vertical-align: super;
    opacity: 0.7;
}
.footprint-slogan {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
/* 按钮组通用样式 */
.button-group {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 4px;
    margin: 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
/* 分隔线 */
.button-group:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
/* 标准按钮样式 */
.control-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.86);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    line-height: 1;
    min-height: 34px;
}
.control-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}
.control-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(var(--hsla-raw), 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
.control-btn:active::after {
    opacity: 1;
    transform: scale(20) translate(-50%, -50%);
    transition: all 0.5s ease-out;
}
.control-btn.active {
    background: var(--primary-color, #42b983);
    color: #fff;
}
/* 缩放按钮组样式 */
.zoom-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
.hidden-important {
    display: none !important;
}
.zoom-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-btn:hover {
    background: var(--primary-color, #42b983);
}
/* 比例尺文字样式 */
/*.amap-scale-text {
    color: #fff;
    font-size: 12px;
    opacity: 0.8;
    margin-left: 8px;
    font-weight: 500;
}*/
/* 飞机开关样式优化 */
.plane-switch {
    --dot: #fff;
    --street: #6B6D76;
    --street-line: #A8AAB4;
    --street-line-mid: #C0C2C8;
    --sky-1: #60A7FA;
    --sky-2: #2F8EFC;
    --light-1: rgba(255, 233, 0, 1);
    --light-2: rgba(255, 233, 0, .3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 4px;
    border-radius: 999px;
    transition: all 0.25s ease;
}
.plane-switch:hover {
    background: rgba(255, 255, 255, 0.06);
}
.plane-switch .switch-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    user-select: none;
    min-width: 28px;
    text-align: center;
}
.plane-switch input {
    display: none;
}
.plane-switch input + div {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 25px;
    padding: 1px;
    border-radius: 13px;
    background: linear-gradient(90deg, var(--street) 0%, var(--street) 25%, var(--sky-1) 75%, var(--sky-2) 100%) left var(--p, 0%) top 0;
    background-position-x: var(--p, 0%);
    background-size: 400% auto;
    transition: background-position 0.6s;
}
.plane-switch input + div:before, .plane-switch input + div:after {
    content: "";
    display: block;
    position: absolute;
    transform: translateX(var(--s, 0));
    transition: transform 0.3s;
}
.plane-switch input + div:before {
    width: 42px;
    right: 2px;
    top: 4px;
    height: 1px;
    background: var(--street-line);
    box-shadow: 0 16px 0 0 var(--street-line);
}
.plane-switch input + div:after {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    left: 23px;
    top: 1px;
    -webkit-animation: lights2 2s linear infinite;
    animation: lights2 2s linear infinite;
    box-shadow: inset 0 0 0 2px var(--light-1), 0 21px 0 var(--light-1), 8px 0 0 var(--light-2), 8px 21px 0 var(--light-2), 16px 0 0 var(--light-2), 16px 21px 0 var(--light-2);
}
.plane-switch input + div span {
    display: block;
    position: absolute;
}
.plane-switch input + div span.street-middle {
    top: 12px;
    left: 21px;
    width: 3px;
    height: 1px;
    transform: translateX(var(--s, 0));
    background: var(--street-line-mid);
    box-shadow: 5px 0 0 var(--street-line-mid), 10px 0 0 var(--street-line-mid), 15px 0 0 var(--street-line-mid), 20px 0 0 var(--street-line-mid), 25px 0 0 var(--street-line-mid);
    transition: transform 0.3s;
}
.plane-switch input + div span.cloud {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    top: var(--ct, 8px);
    left: 100%;
    opacity: var(--co, 0);
    transition: opacity 0.3s;
    -webkit-animation: clouds2 2s linear infinite var(--cd, 0s);
    animation: clouds2 2s linear infinite var(--cd, 0s);
}
.plane-switch input + div span.cloud:before, .plane-switch input + div span.cloud:after {
    content: "";
    position: absolute;
    transform: translateX(var(--cx, 0));
    border-radius: 50%;
    width: var(--cs, 5px);
    height: var(--cs, 5px);
    background: #fff;
    bottom: 1px;
    left: 1px;
}
.plane-switch input + div span.cloud:after {
    --cs: 6px;
    --cx: 4px;
}
.plane-switch input + div span.cloud.two {
    --ct: 20px;
    --cd: 1s;
    opacity: var(--co-2, 0);
}
.plane-switch input + div div {
    display: table;
    position: relative;
    z-index: 1;
    padding: 5px;
    border-radius: 50%;
    background: var(--dot);
    transform: translateX(var(--x, 0));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.35, 1.2);
}
.plane-switch input + div div svg {
    width: 13px;
    height: 13px;
    display: block;
    color: var(--c, var(--street));
    transition: color 0.6s;
}
.plane-switch input:checked + div {
    --p: 100%;
    --x: 25px;
    --s: -50px;
    --c: var(--sky-2);
    --co: .8;
    --co-2: .6;
}
@keyframes lights2 {
    20%, 30% {
        box-shadow: inset 0 0 0 2px var(--light-2), 0 21px 0 var(--light-2), 8px 0 0 var(--light-2), 8px 21px 0 var(--light-2), 16px 0 0 var(--light-1), 16px 21px 0 var(--light-1);
    }
    55%, 65% {
        box-shadow: inset 0 0 0 2px var(--light-2), 0 21px 0 var(--light-2), 8px 0 0 var(--light-2), 8px 21px 0 var(--light-2), 16px 0 0 var(--light-1), 16px 21px 0 var(--light-1);
    }
    90%, 100% {
        box-shadow: inset 0 0 0 2px var(--light-1), 0 21px 0 var(--light-1), 8px 0 0 var(--light-2), 8px 21px 0 var(--light-2), 16px 0 0 var(--light-2), 16px 21px 0 var(--light-2);
    }
}
@keyframes clouds2 {
    97% {
        transform: translateX(-72px);
        visibility: visible;
    }
    98%, 100% {
        visibility: hidden;
    }
    99% {
        transform: translateX(-72px);
    }
    100% {
        transform: translateX(0);
    }
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    .drawer-content {
        padding: 20px;
    }
    .timeline-card {
        padding: 14px;
    }
}
#timeline-btn {
    position: relative;
    padding: 9px 14px;
    min-height: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    letter-spacing: 0.2px;
}
#timeline-btn::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#timeline-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(66, 185, 131, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.2);
    background: var(--primary-color, #42b983);
    color: #fff;
}
#timeline-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
#timeline-btn:active::after {
    opacity: 1;
    transform: scale(20) translate(-50%, -50%);
    transition: all 0.5s ease-out;
}
#timeline-btn:active {
    transform: scale(0.98);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    #timeline-btn::before {
        width: 14px;
        height: 14px;
    }
}
/* -------------------------  */
.drawer {
    position: fixed;
    top: 0;
    right: -650px; /* 增加宽度 */
    width: 650px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.drawer.open {
    right: 0;
    background: rgba(255, 255, 255, 0.1); /* 设置透明背景 */
}
.drawer-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.drawer-content h2 {
    margin: 0 0 -10px 0;
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    position: relative;
}
.drawer-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.drawer.open .drawer-content h2::after {
    width: 100px;
}
#close-drawer {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.03);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
#close-drawer:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}
#timeline-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    margin-right: -10px;
    /*padding: 10px 10px 0 10px;*/
}
#timeline-container::-webkit-scrollbar {
    width: 6px;
}
#timeline-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
}
#timeline-container::-webkit-scrollbar-thumb {
    background: hsla(var(--hsla-raw), 0.25);
    border-radius: 4px;
}
#timeline-container::-webkit-scrollbar-thumb:hover {
    background: hsla(var(--hsla-raw), 0.42);
}
.timeline-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 180px;
    cursor: pointer;
    width: 270px;
}
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}
.timeline-card .card-header {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
}
.timeline-card .card-time {
    position: relative;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}
.timeline-card .card-time::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}
.timeline-card .card-description {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
    display: flex;
    height: 20px;
}
.timeline-card .view-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-top: auto;
}
.timeline-card .view-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.timeline-card .view-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.timeline-card .view-button:active {
    transform: translateY(0);
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    .drawer-content {
        padding: 20px 10px 20px 20px;
    }
    .timeline-card {
        padding: 16px;
        min-height: 180px;
    }
    .timeline-card .card-header {
        font-size: 18px;
    }
    .timeline-card .card-description {
        font-size: 14px;
    }
    .timeline-card .view-button {
        padding: 6px 12px;
        font-size: 13px;
    }
    .timeline-card .view-button svg {
        width: 14px;
        height: 14px;
    }
    .map-controls {
    bottom: calc(20px + var(--safe-bottom));
        display: flex !important; /* Ensure map-controls are visible */
    }
    #timeline-btn {
        display: flex !important;
    }
    #zoom-buttons {
        display: none !important; /* 隐藏缩放按钮 */
    }
    #line {
        display: none !important; /* 隐藏缩放按钮 */
    }
    #zoom-restore {
        display: none !important; /* 隐藏缩放按钮 */
    }
    .footprint-logo {
        font-size: 1.5rem;
    }
    .footprint-slogan {
        font-size: 0.8rem;
    }
}
.timeline-card .loading-indicator {
    position: absolute;
    top: 10px;
    left: calc(100% - 36px);
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 100%;
    background: none;
    animation: circle infinite 0.75s linear;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.timeline-card.loading .loading-indicator {
    opacity: 1;
}
.timeline-card.loading {
    background: rgba(0, 0, 0, 0.1) !important;
}
.timeline-card.loading::before {
    opacity: 0.5;
}
@keyframes circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.timeLineBox {
    width: 100%;
    height: 100%;
    /*padding: 20px;*/
    box-sizing: border-box;
    display: block;
    position: relative;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE和Edge */
}
/* Chrome/Safari/Opera */
.timeLineBox::-webkit-scrollbar {
    display: none;
}
.timeline {
    width: 96%;
    /*height: 255px; !* TODO *!*/
    margin-left: 10px;
    /*display: flex; !* TODO *!*/
    justify-content: start;
    /*border-left: 5px solid gray; !* TODO *!*/
}
.timeline.reverse {
    flex-direction: row-reverse;
    justify-content: end;
    border-right: 5px solid gray;
    border-left: 0;
}
.timeline.on {
    border-color: #254b87;
}
.timeline:first-child {
    border: 0;
}
.timelineItem {
    height: 100%;
    border-bottom: 5px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    cursor: default;
    position: relative;
}
.timelineItem.active {
    border-color: #254b87;
}
.timelineItem.active .itemTitle {
    color: #254b87;
}
.timelineItem.active .itemTitleDiv {
    color: #254b87;
}
.timelineItem.active .itemDot {
    background-color: #254b87;
}
.itemTitle {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    overflow: visible; /* 需要改为 visible 才能显示完整卡片 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}
.itemDot {
    width: 20px;
    height: 20px;
    background-color: gray;
    border-radius: 10px;
    margin-bottom: -12px;
    display: block;
}
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.itemTitleDiv {
    padding: 0 15px;
}
/* Arrow styles */
.to_left {
    width: 0;
    height: 0;
    border-right: 10px solid gray;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.to_right {
    width: 0;
    height: 0;
    border-left: 10px solid gray;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.to-btn-left {
    width: 100%;
    transform: translate(-5px, 20px);
}
.to-btn-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    transform: translate(5px, 20px);
}
.map-controls.open {
    left: auto;
    right: calc(500px + 12px + var(--safe-right));
    transform: translateX(0);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, background 0.3s;
    border-radius: 22px 0 0 22px;
    background: rgba(30, 41, 59, 0.78);
}
.map-controls.open:hover {
    transform: translateY(-2px);
}
/* 底部控制栏白色主题 */
.map-controls,
.map-controls:hover,
.map-controls.open,
.map-controls.open:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.zoom-buttons,
.button-group {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}
.zoom-btn,
#zoom-restore,
#messageBoards,
#timeline-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.control-btn,
.plane-switch .switch-text {
    color: #1f2937;
    text-shadow: none;
}
.plane-switch:hover {
    background: rgba(15, 23, 42, 0.04);
}
#timeline-btn::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}
#timeline-btn:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
}
.zIndex13 {
    z-index: 13 !important;
}
.zIndex14 {
    z-index: 14 !important;
}
/* 时间线抽屉 */
.timeline-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: -18px 0 44px rgba(15, 23, 42, 0.12);
    z-index: 2;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.timeline-drawer.open {
    right: 0;
    /* 保持透明度，背景色已用变量 */
}
.drawer-header {
    background: rgba(255, 255, 255, 0.72);
    padding: 20px 22px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}
.drawer-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    letter-spacing: 0.02em;
}
.time-close-btn {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.time-close-btn:hover {
    background: hsla(var(--hsla-raw), 0.16);
    color: #fff;
    transform: rotate(90deg) scale(1.02);
}
.timeline-content {
    padding: 18px 0 22px 18px;
    overflow-y: auto;
    height: 100%;
    background: transparent;
}
/* 时间线主线 */
.timeline {
    position: relative;
    padding: 0 0 28px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 44px;
    width: 2px;
    background: linear-gradient(to bottom, hsla(var(--hsla-raw), 0.14), hsla(var(--hsla-raw), 0.5), hsla(var(--hsla-raw), 0.14));
}
.timeline-item {
    position: relative;
    margin: 0 22px 32px 0;
    padding-left: 72px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: -32px;
    width: 3px;
    background: linear-gradient(to bottom, hsl(var(--hsla-raw)), hsla(var(--hsla-raw), 0.05));
    z-index: 0;
    border-radius: 2px;
}

.timeline-item:last-child::after {
    display: none;
}
.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.timeline-date {
    position: absolute;
    left: 0;
    top: 14px;
    background: hsl(var(--hsla-raw));
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-weight: 600;
    min-width: 65px;
    font-size: 0.8rem;
    text-align: center;
    border: none;
    box-shadow: 0 4px 12px hsla(var(--hsla-raw), 0.35);
    z-index: 2;
    letter-spacing: 0.03em;
}
/* 卡片样式优化 */
.timeline-content-card {
    background: var(--bg-color, #fff);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    width: 320px;
}

.timeline-content-card::before {
    content: '';
    position: absolute;
    left: -43px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: hsl(var(--hsla-raw));
    box-shadow: 0 0 0 3px hsla(var(--hsla-raw), 0.2);
    z-index: 3;
}
.timeline-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
}
.timeline-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}
.timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.timeline-content-card:hover .timeline-media img {
    transform: scale(1.02);
    z-index: 10;
}
.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 12, 20, 0.7) 0%, rgba(7, 12, 20, 0.34) 42%, transparent 72%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    z-index: 2;
}
.timeline-location {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.timeline-content-card:hover .timeline-location {
    transform: translateX(10px) translateY(-52px);
    z-index: 10;
}
.timeline-info-overlay {
    padding: 12px 0 0;
}
.timeline-desc {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-size: 0.82rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.detail-btn {
    /*background: rgba(12, 18, 28, 0.46);*/
    background: rgba(255, 255, 255, 0.46);
    color: #fff;
    border: 1px solid hsla(var(--hsla-raw), 0.42);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}
.detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.18), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.detail-btn:hover {
    transform: translateY(-1px);
    /*box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);*/
    box-shadow: 0 10px 24px rgba(231, 231, 231, 0.22);
    background: hsla(var(--hsla-raw), 0.78);
    border-color: hsla(var(--hsla-raw), 0.94);
}
.detail-btn:hover::before {
    transform: translateX(100%);
}
/* 响应式设计 */
@media (max-width: 768px) {
    .timeline-drawer {
        width: 100vw;
        right: -100vw;
        min-width: unset;
        max-width: 100vw;
        border-radius: 0;
    }
    .timeline-drawer.open {
        right: 0;
    }
    .map-controls.open {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 16px;
    }
    .map-controls.open:hover {
        transform: translateX(-50%) translateY(-2px);
    }
    .drawer-header {
        padding: 14px 10px;
        font-size: 1.1rem;
    }
    .timeline-content {
        padding: 10px 0 10px 5px;
    }
    .timeline-content-card {
        width: 65vw;
        min-width: unset;
        margin-top: 10px;
        border-radius: 10px;
    }
    .timeline-media {
        height: 160px;
    }
    .media-overlay {
        padding: 10px;
    }
    .timeline-location {
        font-size: 0.95rem;
        gap: 4px;
        margin-bottom: 4px;
    }
    .timeline-content-card:hover .timeline-location {
        transform: translateX(8px) translateY(-42px);
    }
    .timeline-date {
        min-width: 60px;
        font-size: 0.8rem;
        padding: 5px 7px;
        top: 8px;
    }
    .timeline-desc {
        font-size: 0.75rem;
        height: 16px;
        margin-bottom: 8px;
    }
    .detail-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
        border-radius: 10px;
        gap: 4px;
    }
    .location-icon {
        width: 16px;
        height: 16px;
    }
}
/* 动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fade-in {
    animation: fadeIn 1s ease forwards;
}
/* 时间线装饰 */
.timeline-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, hsla(var(--hsla-raw), 0.12), transparent);
    z-index: 1;
}
.timeline-end {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, hsla(var(--hsla-raw), 0.12), transparent);
    z-index: 1;
}
.timeline-content::-webkit-scrollbar {
    width: 6px;
}
.timeline-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.06);
}
.timeline-content::-webkit-scrollbar-thumb {
    background: hsla(var(--hsla-raw), 0.38);
    border-radius: 4px;
}
.timeline-content::-webkit-scrollbar-thumb:hover {
    background: hsla(var(--hsla-raw), 0.55);
}
.location-icon {
    width: 20px;
    height: 20px;
}
/* === 无障碍: prefers-reduced-motion === */
@media (prefers-reduced-motion: reduce) {
  #footprint-page *,
  #footprint-page *::before,
  #footprint-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-in,
  .fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn-pulse {
    animation: none !important;
  }
  #footprint-map.map-shake {
    animation: none !important;
  }
  .timeline-content-card:hover .timeline-media img,
  .timeline-content-card:hover .timeline-location {
    transform: none !important;
  }
  .detail-btn:hover {
    transform: none !important;
  }
}
/* === 深色模式基础支持 === */
@media (prefers-color-scheme: dark) {
  #footprint-page {
    --bg-color: #1a1a2e;
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --shadow-color: rgba(0, 0, 0, 0.4);
    background: #12121f;
  }
  #footprint-page #footprint-map {
    background: #1a1a2e;
  }
  .timeline-drawer {
    background: #1a1a2e;
    border-left-color: rgba(255, 255, 255, 0.08);
  }
  .drawer-header {
    background: #16213e;
    border-bottom-color: rgba(255, 255, 255, 0.06);
  }
  .drawer-header h2 {
    color: #e0e0e0;
  }
  .timeline-content-card {
    background: #1e2a3a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  .timeline-content-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  .timeline-desc {
    color: rgba(200, 200, 200, 0.8);
  }
  .detail-btn {
    /*background: rgba(8, 12, 20, 0.52);*/
    border-color: hsla(var(--hsla-raw), 0.55);
  }
  #messageBoards {
    background: #1e2a3a;
    color: #e0e0e0;
  }
  #zoom-restore {
    background: #1e2a3a;
    color: #e0e0e0;
  }
  .plane-switch input[type="checkbox"]:checked + div > div {
    background: #2a5a3a;
    border-color: #42b983;
  }
}
/* ===== 右上角统计面板（与底部控件栏风格一致） ===== */
.map-stats-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 90;
    width: 150px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    user-select: none;
}
.map-stats-panel.show {
    opacity: 1;
    transform: translateY(0);
}
.stats-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stats-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stats-number {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1;
}
.stats-total .stats-number {
    font-size: 28px;
    font-weight: 700;
}
.stats-accent {
    color: hsl(var(--hsla-raw));
}
.stats-label {
    color: #94a3b8;
    font-weight: 500;
    color: #94a3b8;
}
.stats-divider {
    margin: 14px 0 12px;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
}
/* 分类明细行 */
.stats-detail {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.stats-cat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}
.stats-cat-label {
    color: #94a3b8;
}
.stats-cat-value {
    color: #334155;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.stats-cat.is-zero {
    opacity: 0.25;
}
/* 响应式 */
@media (max-width: 768px) {
    .map-stats-panel {
        top: calc(10px + env(safe-area-inset-top, 0px));
        right: 10px;
        width: auto;
        padding: 8px 14px;
        border-radius: 8px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .map-stats-panel .stats-main {
        flex-direction: row;
        gap: 0;
    }

    .map-stats-panel .stats-item {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

    .map-stats-panel .stats-item:not(:last-child)::after {
        content: "\00B7";
        color: #cbd5e1;
        margin: 0 6px;
        font-size: 11px;
    }

    .map-stats-panel .stats-number {
        font-size: 12px;
        font-weight: 600;
    }

    .map-stats-panel .stats-total .stats-number {
        font-size: 12px;
        font-weight: 700;
    }

    .map-stats-panel .stats-label {
        font-size: 10px;
    }

    .map-stats-panel .stats-divider,
    .map-stats-panel .stats-detail {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .map-stats-panel {
        transition: none;
    }
}

/* ===== 标记点高亮方案：基础过渡（所有方案共用） ===== */
.marker-style-pin .marker-image,
.marker-style-circle .marker-image,
.marker-style-card .marker-image {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ===== 方案 B：缩放 + 彩色光晕（默认，glow） ===== */
.highlight-scheme-glow .amap-marker.marker-highlight .marker-image,
.highlight-scheme-glow .amap-marker.marker-highlight .custom-marker:hover .marker-image {
    transform: scale(1.3);
    box-shadow: 0 0 16px 4px hsla(var(--hsla-raw), 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ===== 方案 A：脉冲光环（pulse） ===== */
.highlight-scheme-pulse .amap-marker.marker-highlight .marker-image {
    transform: scale(1.15);
    transition: transform 0.25s ease;
}
.highlight-scheme-pulse .amap-marker.marker-highlight .custom-marker {
    position: relative;
}
.highlight-scheme-pulse .amap-marker.marker-highlight .custom-marker::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 3px solid hsla(var(--hsla-raw), 0.6);
    animation: highlight-pulse 1.2s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes highlight-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== 方案 C：弹跳动画（bounce） ===== */
.highlight-scheme-bounce .amap-marker.marker-highlight .marker-image,
.highlight-scheme-bounce .amap-marker.marker-highlight .custom-marker:hover .marker-image {
    animation: highlight-bounce 0.6s ease-in-out infinite alternate;
    box-shadow: 0 8px 24px hsla(var(--hsla-raw), 0.4);
}
@keyframes highlight-bounce {
    0% {
        transform: translateY(0) scale(1.05);
    }
    100% {
        transform: translateY(-8px) scale(1.12);
    }
}

/* ===== 方案 D：边框高亮环（ring） ===== */
.highlight-scheme-ring .amap-marker.marker-highlight .marker-image,
.highlight-scheme-ring .amap-marker.marker-highlight .custom-marker:hover .marker-image {
    transform: scale(1.15);
    box-shadow:
        0 0 0 4px hsla(var(--hsla-raw), 0.3),
        0 0 0 8px hsla(var(--hsla-raw), 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* ===== 高亮方案无障碍降级 ===== */
@media (prefers-reduced-motion: reduce) {
    .highlight-scheme-pulse .amap-marker.marker-highlight .marker-image::before {
        animation: none;
        display: none;
    }
    .highlight-scheme-pulse .amap-marker.marker-highlight .marker-image {
        transform: scale(1.15);
        box-shadow: 0 0 16px 4px hsla(var(--hsla-raw), 0.5);
    }
    .highlight-scheme-bounce .amap-marker.marker-highlight .marker-image,
    .highlight-scheme-bounce .amap-marker.marker-highlight .custom-marker:hover .marker-image {
        animation: none;
        transform: scale(1.15);
        box-shadow: 0 0 16px 4px hsla(var(--hsla-raw), 0.5);
    }
}
