@import url("https://fontsapi.zeoseven.com/477/main/result.css");
@import url("https://fontsapi.zeoseven.com/449/main/result.css");

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

/* ==================== 创意字体挂件 ==================== */
.hanging-decoration {
    position: fixed;
    z-index: 99999;
    font-family: "TsangerXWZ", "LXGW ZhenKai GB", serif;
    font-size: clamp(14px, 3vw, 20px);
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
    pointer-events: none;
    animation: swing 3s ease-in-out infinite;
    white-space: nowrap;
}

.hanging-decoration::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, transparent, #d4af37);
}

.hanging-decoration:nth-child(1) { top: 80px; left: 5%; animation-delay: 0s; }
.hanging-decoration:nth-child(2) { top: 120px; right: 8%; animation-delay: 0.5s; }
.hanging-decoration:nth-child(3) { top: 60px; left: 20%; animation-delay: 1s; }
.hanging-decoration:nth-child(4) { top: 100px; right: 25%; animation-delay: 1.5s; }
.hanging-decoration:nth-child(5) { top: 150px; left: 12%; animation-delay: 2s; }
.hanging-decoration:nth-child(6) { top: 70px; right: 15%; animation-delay: 2.5s; }

@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* ==================== 弹幕容器 ==================== */
.danmaku-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99998;
    overflow: hidden;
}

.danmaku-item {
    position: absolute;
    font-family: "shetumodengxiaofangti", "LXGW ZhenKai GB", sans-serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: bold;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    animation: danmaku-float linear forwards;
    opacity: 0.9;
}

@keyframes danmaku-float {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}

/* 弹幕颜色 */
.danmaku-color-1 { color: #ff6b6b; }
.danmaku-color-2 { color: #4ecdc4; }
.danmaku-color-3 { color: #ffe66d; }
.danmaku-color-4 { color: #a8e6cf; }
.danmaku-color-5 { color: #ff8b94; }
.danmaku-color-6 { color: #c7ceea; }
.danmaku-color-7 { color: #ffd93d; }
.danmaku-color-8 { color: #6bcf7f; }
.danmaku-color-9 { color: #ff9f43; }
.danmaku-color-10 { color: #54a0ff; }

/* 加载页面样式 */
.loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
    color: #d4af37;
    max-width: 80%;
}

.loading-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: "LXGW ZhenKai GB";
}

.loading-percentage-top {
    font-size: 36px;
    font-weight: bold;
    color: #d4af37;
    font-family: "LXGW ZhenKai GB";
    margin-bottom: 30px;
    text-align: center;
}

/* 圆形加载动画 */
.loading-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
}

.loading-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../data/imgs/index.jpg') center/cover;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    font-family: "LXGW ZhenKai GB";
    z-index: 2;
}

#loadingText {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* 信封样式 */
.envelope-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
    transition: background 0.5s ease;
}

.envelope-wrapper {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.envelope-wrapper:hover {
    transform: scale(1.05);
}

.envelope-wrapper:active {
    transform: scale(0.95);
}

.envelope {
    width: 180px;
    height: 120px;
    position: relative;
    margin: 0 auto 20px;
}

.envelope-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 50%, #8b4513 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.envelope-pattern {
    font-size: 48px;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #a0522d 0%, #cd853f 50%, #a0522d 100%);
    border-radius: 8px 8px 0 0;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    transform-origin: top;
    transition: transform 0.5s ease;
    z-index: 2;
}

.envelope-wrapper:hover .envelope-flap {
    transform: rotateX(180deg);
}

.envelope-wrapper.opening .envelope-flap {
    transform: rotateX(180deg);
    transition: transform 0.8s ease;
}

.envelope-wrapper.opening {
    animation: envelopeOpen 1.5s ease forwards;
}

@keyframes envelopeOpen {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    60% {
        transform: scale(0.9) translateY(-20px);
        opacity: 1;
    }
    100% {
        transform: scale(0) translateY(-100px);
        opacity: 0;
    }
}

.envelope-container.opening {
    animation: bgLightUp 1.5s ease forwards;
}

@keyframes bgLightUp {
    0% {
        background: rgba(0, 0, 0, 0.9);
    }
    50% {
        background: rgba(0, 0, 0, 0.5);
    }
    100% {
        background: rgba(0, 0, 0, 0);
    }
}

.envelope-text {
    font-size: 18px;
    color: #d4af37;
    font-family: "LXGW ZhenKai GB";
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

body {
    font-family: 'Noto Serif CJK', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #000;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 页面内容动画 */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
}

/* 页面特效 */
.page-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 1s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 1s ease-out forwards;
}

.animate-slide-in-down {
    animation: slideInDown 1s ease-out forwards;
}

/* 延迟动画 */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.top-bar {
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 1000;
    padding: 12px 0;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.control-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    pointer-events: auto;
}

.mode-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 4px;
    pointer-events: auto;
}

.mode-btn {
    border: none;
    background: transparent;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
}

.mode-btn.active {
    background: rgba(255, 255, 255, 0.9);
    color: #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.play-btn, .music-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn.playing, .music-btn.playing {
    background: rgba(212, 175, 55, 0.9);
    border-color: #d4af37;
    animation: pulse 1.5s infinite;
}

.play-icon, .music-icon, .pause-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.play-btn.playing .play-icon, .music-btn.playing .music-icon {
    color: #fff;
}

.pause-icon {
    display: none;
}

.play-btn:not(.paused) .pause-icon {
    display: block;
}

.play-btn:not(.paused) .play-icon {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pages-container {
    position: relative;
    width: 100%;
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px 40px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: background-image, background-position, opacity, transform;
    opacity: 0;
    pointer-events: none;
    visibility: visible;
    transform: translateY(30px);
}

.page.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    transform: translateY(0);
}

/* 幻灯片效果动画 - 只移动位置，不改变尺寸 */
.page.active.slide-left {
    animation: slideLeft 10s ease-in-out infinite;
}

.page.active.slide-right {
    animation: slideRight 10s ease-in-out infinite;
}

.page.active.slide-up {
    animation: slideUp 10s ease-in-out infinite;
}

.page.active.slide-down {
    animation: slideDown 10s ease-in-out infinite;
}

.page.active.slide-diagonal-1 {
    animation: slideDiagonal1 10s ease-in-out infinite;
}

.page.active.slide-diagonal-2 {
    animation: slideDiagonal2 10s ease-in-out infinite;
}

/* 水平左移 - 从右向左（增强版） */
@keyframes slideLeft {
    0% { background-position: 65% 50%; }
    50% { background-position: 35% 50%; }
    100% { background-position: 65% 50%; }
}

/* 水平右移 - 从左向右（增强版） */
@keyframes slideRight {
    0% { background-position: 35% 50%; }
    50% { background-position: 65% 50%; }
    100% { background-position: 35% 50%; }
}

/* 垂直上移 - 从下向上（增强版） */
@keyframes slideUp {
    0% { background-position: 50% 65%; }
    50% { background-position: 50% 35%; }
    100% { background-position: 50% 65%; }
}

/* 垂直下移 - 从上向下（增强版） */
@keyframes slideDown {
    0% { background-position: 50% 35%; }
    50% { background-position: 50% 65%; }
    100% { background-position: 50% 35%; }
}

/* 对角线移动 - 左上到右下（增强版） */
@keyframes slideDiagonal1 {
    0% { background-position: 35% 35%; }
    50% { background-position: 65% 65%; }
    100% { background-position: 35% 35%; }
}

/* 对角线移动 - 右上到左下（增强版） */
@keyframes slideDiagonal2 {
    0% { background-position: 65% 35%; }
    50% { background-position: 35% 65%; }
    100% { background-position: 65% 35%; }
}

.page.bg-transitioning {
    opacity: 0.95;
}

.page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.2));
    z-index: 1;
}

.page-content {
    position: absolute;
    z-index: 2;
    max-width: 90%;
    width: 100%;
    max-width: 500px;
    animation: fadeIn 1s ease-out;
    padding: 0 20px;
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(30px); }
}

.page-title {
    font-size: clamp(20px, 6vw, 28px);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: clamp(3px, 1.5vw, 6px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    word-wrap: break-word;
}

.page-subtitle {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 400;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.3;
    word-wrap: break-word;
}

.page-description {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    word-wrap: break-word;
}

.photo-grid {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 15px;
    z-index: 3;
}

.photo-hint {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    z-index: 3;
    animation: fadeIn 1s ease-out;
}

/* 响应式提示文字 */
@media (max-width: 768px) {
    .photo-hint::after {
        content: '左右滑动查看图片';
        display: block;
    }
    
    .photo-hint::before {
        content: '';
        display: none;
    }
    
    .photo-hint {
        font-size: 0;
    }
}

@media (min-width: 769px) {
    .photo-hint {
        content: '点击查看大图';
    }
}

.photo-item {
    width: clamp(40px, 10vw, 55px);
    height: clamp(40px, 10vw, 55px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: slideIn 1s ease-out;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.photo-item:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: #d4af37;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-item.active {
    border-color: #d4af37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px) scale(1.1);
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* 最后一页信息头部 - 显示title、subtitle、description */
.info-page-header {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    text-align: center;
    z-index: 10;
    color: #fff;
}

.info-page-header .page-title,
.info-page-header .page-subtitle,
.info-page-header .page-description {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* 最后一页信息内容容器 - 独立样式，不影响其他页面 */
.info-page-content {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    max-width: 500px;
    z-index: 10;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: clamp(15px, 4vw, 25px);
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: slideUpInfo 1s ease-out;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 70vh;
    position: relative;
    z-index: 5;
}

@keyframes slideUpInfo {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-card h3 {
    font-size: clamp(16px, 4vw, 20px);
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.countdown-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f0e3 0%, #f5e6d3 100%);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-container h4 {
    margin: 0 0 10px 0;
    color: #8b4513;
    font-size: 16px;
    font-family: "LXGW ZhenKai GB";
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 40px;
}

.countdown-number {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #8b4513;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "LXGW ZhenKai GB";
}

.countdown-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
    font-family: "LXGW ZhenKai GB";
}

.info-card p {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.5;
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.02);
}

#mapBtn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: clamp(14px, 3vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#mapBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.info-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-item:last-of-type {
    border-bottom: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-card {
        padding: 15px;
        max-height: 80vh;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 18px;
        padding: 6px 10px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .map-container {
        margin-bottom: 10px;
    }
    
    .info-item {
        margin-bottom: 10px;
        gap: 10px;
    }
    
    #mapBtn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 12px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-number {
        font-size: 16px;
        padding: 4px 8px;
    }
    
    .countdown-container h4 {
        font-size: 14px;
    }
    
    .info-item span {
        font-size: 14px;
    }
    
    #mapBtn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

.info-item svg {
    width: 22px;
    height: 22px;
    color: #d4af37;
    flex-shrink: 0;
}

.info-item span {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #333;
    text-align: left;
    flex: 1;
}

/* 倒计时样式 */
.countdown-container {
    text-align: center;
    margin: 20px 0;
    color: #8b4513;
}

.countdown-container h4 {
    font-family: 'LXGW ZhenKai GB', serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: #8b4513;
}

.countdown-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #8b4513;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.countdown-item {
    background: #8b4513;
    color: #f5deb3;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.countdown-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

/* 新倒计时样式 */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 20px;
    flex-wrap: wrap;
}

.c-com {
    position: relative;
    border-radius: 15% !important;
    padding-left: 3px;
    padding-right: 3px;
    display: inline-block;
    margin: 0 2px;
}

.c-com::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data/imgs/tx.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    border-radius: 15% !important;
}

.c-wrap {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.c-day-wrap {
    display: flex;
    align-items: center;
}

.c-num {
    position: relative;
    width: 10px;
    height: 40px;
    overflow: hidden;
    text-align: center;
}

.c-day-left {
    /* width: 30px; */
}

.flex-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.next-num,
.curr-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.c-text {
    margin-left: 5px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* 信息文本样式 */
.info-text {
    text-align: center;
    margin: 20px 0;
}

.info-text p {
    margin: 5px 0;
    font-size: clamp(12px, 2.5vw, 14px);
    color: #333;
}

/* 地图容器样式 */
.map-container {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container .map-btn {
    margin-top: 15px;
}

.map-btn {
    width: 200px;
    padding: 14px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin: 15px auto;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.map-btn svg {
    width: 20px;
    height: 20px;
}

.page-indicators {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.page.hero .page-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.page.hero .page-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
}

.page.hero .page-description {
    font-size: 18px;
}

@media (max-width: 375px) {
    .page-title {
        font-size: 28px;
    }
    .page-subtitle {
        font-size: 20px;
    }
    .page.hero .page-title {
        font-size: 36px;
    }
    .page.hero .page-subtitle {
        font-size: 24px;
    }
    .photo-item {
        width: 80px;
        height: 80px;
    }
    .info-card {
        padding: 20px;
    }
}