/* 绠€鍖栨粴鍔ㄦ潯瑙ｅ喅鏂规 */
html {
    /* 璁剧疆婊氬姩鏉￠鐣欑┖闂达紝鐜颁唬娴忚鍣ㄧ殑鏈€浣宠В鍐虫柟妗?*/
    scrollbar-gutter: stable;
    /* 闃叉姘村钩婊氬姩 */
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 鍝嶅簲寮忚皟鏁?- 閽堝鏋佸皬灞忓箷浼樺寲 */
    @media (max-width: 360px) {
        .meta {
            grid-template-columns: 1fr;
        }
        
        .details-header h1 {
            font-size: 18px;
        }
        
        .modal-content {
            max-width: 95vw;
        }
        
        .btn-download-large {
            padding: 12px;
            font-size: 15px;
        }
        
        .download-button-container {
            width: calc(100% - 24px);
            margin: 12px auto;
    }
}

.download-button-container {
    max-width: 1200px;
    margin: 0 auto 0px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 14px;
    position: relative;
}

.download-button {
    background: #0f172a;
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.download-button span {
    position: relative;
}

.download-button svg {
    flex-shrink: 0;
}

.download-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.3);
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.download-button:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.6);
    outline-offset: 2px;
        }
    }
}

/* 合并body样式，避免重复定义 */
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #ffffff;
    color: #333333;
    /* 只防止水平滚动，不设置垂直滚动 */
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 启用硬件加速 */
    transform: translateZ(0);
    will-change: transform;
}

body.modal-open {
    transform: none !important;
}
/* 详情页专用样式，覆盖和扩展index.css中的通用样式 */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 20px;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 13px;
}

/* 桌面端语言切换 */
.lang-switch-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch-desktop a {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #64748b;
    text-decoration: none;
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lang-switch-desktop a:hover {
    border-color: rgba(148, 163, 184, 0.9);
    color: #111827;
    background: #e5e7eb;
    transform: translateY(-1px);
}

.lang-switch-desktop a.active {
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    border-color: transparent;
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* 移动端语言切换 - 下拉菜单 */
.lang-switch-mobile {
    display: none;
    position: relative;
}

.lang-switch-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(255, 255, 255, 0.95);
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.lang-switch-toggle:hover,
.lang-switch-toggle:focus {
    border-color: rgba(148, 163, 184, 0.9);
    background: #ffffff;
    color: #111827;
    outline: none;
}

.lang-switch-toggle.active {
    border-color: #6366f1;
    background: linear-gradient(135deg, #22d3ee, #6366f1);
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.lang-current {
    font-weight: 500;
}

.lang-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lang-switch-toggle.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #f8fafc;
    color: #1e293b;
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(99, 102, 241, 0.1));
    color: #6366f1;
    font-weight: 600;
}

/* 图片名称标题区域 */
.image-title-section {
    background-color: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid #eaeaea;
}

.image-title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.image-title-container h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}



/* 渐变色线条已移除 */

.content-container {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100%;
}

/* 面包屑样式 */
.breadcrumbs {
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.breadcrumbs a:hover {
    color: #1d4ed8;
}

.breadcrumbs span {
    font-size: 14px;
    opacity: 1;
    color: #555555;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    /* 优化触摸体验 */
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* btn-back 样式已移除 - 未使用 */

.btn-download {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
    font-weight: 700;
}

.btn-download:hover {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

/* btn-share 样式已移除 - 未使用 */
/* 主内容区域 */
main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px 10px;
    box-sizing: border-box;
    display: block;
    position: relative;
}

/* 移除竖图特殊布局，统一使用flex布局 */

main.portrait-layout .details {
    order: 2;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .navbar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .breadcrumbs {
        order: 1;
    }
    
    .actions {
        order: 2;
    }
    
    /* 移动端语言切换：隐藏桌面版，显示移动版 */
    .lang-switch-desktop {
        display: none;
    }
    
    .lang-switch-mobile {
        display: block;
    }
    
    /* 移动端：将语言切换移到breadcrumbs旁边 */
    .navbar-content {
        position: relative;
        flex-wrap: nowrap;
    }
    
    .breadcrumbs {
        flex: 1;
        min-width: 0;
        padding-right: 100px; /* 为语言切换留出空间 */
    }
    
    .lang-switch {
        position: absolute;
        top: 0;
        right: 0;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .download-button-container {
        padding: 0 16px;
        justify-content: center;
        margin-bottom: 0px;
    }
    .content-container {
        padding: 16px 4px 32px;
    }
    
    .navbar-content {
        gap: 10px;
    }
    
    .breadcrumbs {
        font-size: 14px;
        order: 1;
    }
    
    main {
        gap: 12px;
    }
    
    /* 小屏幕下图片调整 */
    .preview {
        height: 400px;
        min-height: auto;
        padding: 12px;
        width: 100%;
    }
    
    .preview.landscape img {
        width: 100%;
        max-height: 360px;
    }
    
    .preview.portrait img {
        max-width: 90%;
        max-height: 360px;
    }
    
    /* 小屏幕下下载按钮调整 */
    .btn-download-large {
        padding: 18px 32px;
        font-size: 16px;
        flex-direction: row;
        gap: 10px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35), 0 4px 8px rgba(59, 130, 246, 0.2);
        letter-spacing: 0.5px;
    }
    
    .btn-download-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(59, 130, 246, 0.45), 0 6px 12px rgba(59, 130, 246, 0.3);
    }
    
    .btn-download-large svg {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    
    .btn-download-large:hover svg {
        transform: translateY(-2px);
    }
    
    /* 图片标题调整 */
    .image-title-container h1 {
        font-size: 18px;
    }
    
    /* 详情区域调整 - 更紧凑 */
    .details {
        padding: 6px;
        gap: 4px;
        width: 100%;
        border-radius: 4px;
    }
    
    .details .download-button-container {
        padding: 0;
        margin: 4px 0;
    }
    
    .details h1 {
        font-size: 13px;
    }
    
    .meta-label, .meta-value {
        font-size: 11px;
    }
    
    /* stat-btn 响应式样式已移除 - 未使用 */
}
.preview {
    background: #ffffff;
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #f5f5f5;
}

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

.preview:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
/* 横图：保持横向展示，缩小显示 */
.preview.landscape img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    max-height: 550px;
    transition: transform 0.3s ease;
    user-select: none;
}
/* 竖图：优化竖图展示，缩小显示并保持固定位置 */
/* iPhone手机框容器 */
.preview.portrait {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    padding: 0px;
    min-height: 700px;
}

/* iPhone样式重置 */
.device *,
.device *::before,
.device *::after {
    box-sizing: border-box;
    display: block;
}

.device .frame {
    z-index: 1;
}

/* iPhone主体 */
.iphone {
    height: 648px;
    width: 340px;
    transform: scale(1);
    display: inline-block;
    position: relative;
}

/* iPhone边框 */
.iphone .frame {
    background: #222;
    border-radius: 54px;
    box-shadow: 
        inset 0 0 0 4px #606467,
        inset 0 0 0 8px #e2e3e4,
        0 20px 40px rgba(0, 0, 0, 0.3);
    height: 648px;
    padding: 20px;
    width: 340px;
    position: relative;
}

/* 屏幕内容区域 */
.iphone .content {
    background-color: #000;
    border-radius: 32px;
    height: 608px;
    position: relative;
    width: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 音量按钮区域装饰条纹 */
.iphone .stripe::after,
.iphone .stripe::before {
    border: solid rgba(51, 51, 51, .25);
    border-width: 0 12px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.iphone .stripe::after {
    top: 136px;
}

.iphone .stripe::before {
    bottom: 136px;
}

/* 顶部刘海区域 */
.iphone .header {
    background: #222;
    height: 34px;
    left: 56%;
    margin-left: -82px;
    position: absolute;
    top: 24px;
    width: 132px;
    z-index: 199;
    border-radius: 30px;
}

.iphone .header::after {
    background: radial-gradient(circle at bottom left, transparent 0, transparent 75%, #222 75%, #222 100%);
    left: -6px;
    position: absolute;
    top: 0;
    height: 34px;
    width: 10px;
}

.iphone .header::before {
    background: radial-gradient(circle at bottom right, transparent 0, transparent 75%, #222 75%, #222 100%);
    right: -6px;
    position: absolute;
    top: 0;
    height: 34px;
    width: 10px;
}

/* 传感器区域 */
.iphone .sensors::after,
.iphone .sensors::before {
    content: "";
    position: absolute;
}

/* 摄像头 */
.iphone .sensors::before {
    background: #444;
    border-radius: 50%;
    height: 10px;
    left: 50%;
    margin-left: 40px;
    top: 14px;
    width: 10px;
    background: radial-gradient(circle at 70% 30%, #6b7bc3, #4c2290 10%, #5256a1, transparent);
    box-shadow: 
        0 0 4px #131420,
        0 0 4px #131420 inset,
        4px 0 8px #5256a1 inset;
}

/* 听筒 */
.iphone .sensors::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
    border-radius: 5px;
    height: 6px;
    left: 50%;
    margin-left: -30px;
    top: 14px;
    width: 60px;
}

/* 左侧按钮 */
.iphone .btns {
    background: #606467;
    height: 26px;
    left: -2px;
    position: absolute;
    top: 92px;
    width: 2px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.iphone .btns::after,
.iphone .btns::before {
    background: #606467;
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    width: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.iphone .btns::after {
    top: 48px;
}

.iphone .btns::before {
    top: 112px;
}

/* 右侧电源键 */
.iphone .power {
    background: #606467;
    height: 80px;
    position: absolute;
    right: -2px;
    top: 160px;
    width: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* 屏幕内的图片 */
.iphone .content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
    display: block;
    /* 确保完全填充，消除黑边 */
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* 图片悬停效果 */
.iphone .content img:hover {
    transform: scale(1.05);
}
.preview img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    user-select: none;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.preview img:hover {
    transform: scale(1.01);
}

.preview img.loading {
    opacity: 0;
}

.image-display-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px;
}

/* 右侧大下载按钮容器 - 更紧凑 */
.details .download-button-container {
    margin: 6px 0;
    padding: 0 16px;
    background: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
}

/* 大下载按钮样式 - 更加突出 */
.btn-download-large {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-width: 220px;
}

.btn-download-large:hover {
    background: linear-gradient(135deg, #2980b9, #1f6dad);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.5);
}

.btn-download-large:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-download-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-download-large:hover::before {
    left: 100%;
}

.btn-download-large::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-download-large:active::after {
    width: 300px;
    height: 300px;
}

.btn-download-large svg {
    margin-bottom: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    width: 22px;
    height: 22px;
}

.btn-download-large:hover svg {
    transform: scale(1.1);
}

.btn-download-large span {
    position: relative;
    z-index: 1;
}



/* 响应式调整 */
@media (max-width: 1200px) {
    .image-display-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .details {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .preview {
        width: 100%;
        min-height: 400px;
        height: auto;
    }
    
    .preview.landscape img {
        width: 90%;
    }
    
    .preview.portrait img {
        max-width: 80%;
    }
}

@media (max-width: 1024px) {
    .preview {
        padding: 16px;
        width: 100%;
    }
    
    .preview.landscape img {
        width: 95%;
        max-height: 480px;
    }
    
    .preview.portrait img {
        max-width: 85%;
        max-height: 480px;
    }
    
    .details {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* 图片加载动画 */
.preview::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-top: 3px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.9);
}

.preview.loading::after {
    opacity: 1;
}

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

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}
.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    cursor: zoom-out;
    overflow: hidden;
    /* 防止双击缩放页面 */
    touch-action: none;
}
.fullscreen-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
.fullscreen-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    user-select: none;
    transition: transform 0.2s ease, opacity 0.3s ease;
    opacity: 1;
}
/* 全屏模式下竖图优化，填充更多空间 */
.fullscreen-overlay.portrait-mode .fullscreen-img {
    max-width: 70vw;
    max-height: 95vh;
}
@media (max-width: 960px) {
    .fullscreen-overlay.portrait-mode .fullscreen-img {
        max-width: 90vw;
        max-height: 90vh;
    }
}
.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}
.nav-buttons:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}
.nav-prev {
    left: 20px;
}
.nav-next {
    right: 20px;
}
.fullscreen-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    z-index: 10001;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(10px);
}

.close-fullscreen {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#fullscreenTitle {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.fullscreen-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.header-action-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-action-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
.close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
.zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10001;
}
.zoom-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
/* 下载进度条样式 */
.download-progress-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 10001;
}

.download-progress-container.visible {
    display: flex;
}

.download-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.download-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.download-progress-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 40px;
    text-align: right;
}
.details {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    max-width: 380px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-top: 0;
    margin-bottom: 0;
    gap: 8px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    align-self: flex-start;
    box-sizing: border-box;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f5f5f5;
}

.details h1 {
    margin: 0;
    font-size: 14px;
    color: #333333;
    line-height: 1.3;
    font-weight: 500;
    flex: 1;
    /* 防止文本过长 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* btn-favorite 和 favorite-icon 样式已移除 - 未使用 */
.meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

/* image-stats 和 stat-btn 样式已移除 - 未使用 */
.meta-item {
    background: none;
    border: none;
    padding: 6px 0;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    gap: 8px;
    border-bottom: 1px solid #f5f5f5;
}
.meta-label {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    display: inline;
}

.meta-value {
    font-size: 12px;
    font-weight: 400;
    color: #333333;
    word-break: break-all;
    text-align: right;
    flex: 1;
}
/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    /* 确保弹窗始终在视口中间 */
    margin: 0;
    box-sizing: border-box;
    /* 使用inset确保完全覆盖 */
    inset: 0;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    max-width: 500px;
    width: calc(100% - 40px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #eaeaea;
    animation: modalSlideIn 0.3s ease-out;
    /* 确保内容在视口中间，即使页面滚动 */
    margin: auto;
    position: relative;
    z-index: 100000;
    box-sizing: border-box;
    /* 确保在视口内可点击 */
    pointer-events: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes mobileModalPop {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 移动端弹窗优化 */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.modal-body {
    padding: 0;
}

.download-info {
    font-size: 14px;
    color: #475569;
    margin-bottom: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.download-info strong {
    color: #0f172a;
    font-weight: 700;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #64748b;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background-color: #f1f5f9;
    color: #1e293b;
}


/* 下载弹窗样式 */
.download-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.download-btn:hover {
    border-color: #2563eb;
    background-color: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.download-btn svg {
    flex-shrink: 0;
    color: #2563eb;
}

.download-btn-content {
    flex: 1;
}

.download-btn-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.download-btn-desc {
    font-size: 14px;
    color: #64748b;
}

.download-btn.download-direct:hover {
    border-color: #2563eb;
}

.download-btn.download-cloud:hover {
    border-color: #10b981;
}

.download-btn.download-cloud svg {
    color: #10b981;
}

/* 分享链接样式 */
.share-link-container {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.share-link-container input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(226, 232, 240, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 14px;
}

.share-link-container button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-link-container button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    main {
        grid-template-columns: 1fr;
    }
    main.portrait-layout {
        grid-template-columns: 1fr;
    }
    .preview {
        min-height: auto;
    }
    .nav-buttons {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .nav-prev {
        left: 10px;
    }
    .nav-next {
        right: 10px;
    }
    .close-fullscreen {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .zoom-controls {
        bottom: 10px;
    }
    .zoom-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .fullscreen-header {
        padding: 16px;
    }
    #fullscreenTitle {
        font-size: 14px;
        margin: 0 10px;
    }
}

@media (max-width: 640px) {
    /* 移动端主图容器 - 进一步减少空白 */
    .image-display-container {
        padding: 0 4px;
    }
    
    .preview {
        padding: 4px;
    }
    
    .preview.landscape img {
        width: 100%;
        max-width: 100%;
    }
    
    /* 小屏幕竖版图片优化 - 完全去除padding */
    .preview.portrait {
        padding: 0;
    }
    
    /* 小屏幕iPhone进一步放大 */
    .iphone {
        transform: scale(1.05);
    }
    
    /* 确保竖版图片完全铺满iPhone框架 */
    .iphone .content {
        overflow: hidden;
        background: #000;
        position: relative;
    }
    
    .iphone .content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-width: 100%;
        min-height: 100%;
        /* 强制铺满，消除黑边 */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    /* 小屏幕横图进一步优化 */
    .preview.landscape {
        padding: 1px 4px;
    }
    
    .preview.landscape img {
        max-height: 80vh;
    }
    
    .share-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .share-btn {
        padding: 12px;
    }
    
    .share-link-container {
        flex-direction: column;
    }
    
    .share-link-container button {
        width: 100%;
    }
}
/* 同类推荐区域 */
.related-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0 0px;
    animation: none;
}
.related-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.related-container:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.5);
}
.related-title {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.related-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    border-radius: 2px;
}
.related-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.6), transparent 100%);
    border-radius: 1px;
    margin-left: 12px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* 猜你喜欢专用样式 */
.related-grid.guess-you-like {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e0e0e0;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.related-card:hover::before {
    transform: scaleX(1);
}

.related-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(249, 115, 22, 0.3);
}

.related-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}



.vertical-wallpaper-view .related-card {
    height: 100%;
}

.vertical-wallpaper-view .related-card-image {
    aspect-ratio: 9 / 16;
}

.related-card-title {
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
}

.related-card .card-info {
    padding: 12px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (max-width: 960px) {
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    .related-container {
        padding: 24px;
    }
    .related-title {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .modal {
        padding: 16px !important;
        align-items: center;
        justify-content: center;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        position: fixed !important;
        inset: 0 !important;
        margin: 0 !important;
        overflow-y: auto !important;
        background: rgba(0, 0, 0, 0.55) !important;
        backdrop-filter: blur(4px);
        box-sizing: border-box !important;
    }
    
    .modal-content {
        width: calc(100% - 32px);
        max-width: 420px;
        max-height: calc(100vh - 80px);
        padding: 24px;
        border-radius: 20px;
        background: #ffffff;
        position: relative;
        transform: none;
        overflow-y: auto;
        margin: auto;
        animation: mobileModalPop 0.3s ease both;
    }
    
    .modal.active .modal-content {
        transform: none;
    }
    
    header {
        padding: 16px;
    }
    main {
        padding: 0px 0 0px;
    }
    .details h1 {
        font-size: 22px;
    }
    
    /* 移动端主图容器 - 减少左右空白 */
    .image-display-container {
        padding: 0 8px;
        margin-bottom: 16px;
    }
    
    .preview {
        padding: 4px;
        min-height: auto;
    }
    /* 移动端横图 - 减少上下留白 */
    .preview.landscape {
        padding: 2px 4px;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .preview.landscape img {
        max-height: 60vh;
        width: 100%;
        object-fit: contain;
    }
    /* 移动端竖屏样式 - 减少左右留白 */
    .preview.portrait {
        min-height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 移动端图片信息样式优化 */
    .details {
        padding: 16px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .details-header h1 {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    /* 移动端元数据样式优化 */
    .meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .meta-item {
        background: #f8f9fa;
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .meta-label {
        font-size: 12px;
        color: #666;
        margin-bottom: 2px;
    }
    
    .meta-value {
        font-size: 14px;
        font-weight: 500;
    }
    
    /* 移动端下载按钮位置优化 - 放在面包屑下方 */
    .download-button-container {
        position: relative;
        margin: 0px auto;
        width: calc(100% - 32px);
        max-width: 400px;
        z-index: 1;
    }
    
    .btn-download-large {
        width: 100%;
        padding: 18px 16px;
        font-size: 17px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: white;
        border: none;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .btn-download-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .btn-download-large:hover::before {
        left: 100%;
    }
    
    .btn-download-large:hover,
    .btn-download-large:active {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
    }
    
    .btn-download-large:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    
    .btn-download-large svg {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease;
    }
    
    .btn-download-large:hover svg {
        transform: scale(1.1);
    }
    
    /* 移动端iPhone主体 - 放大显示，铺满 */
    .iphone {
        height: 486px;
        width: 255px;
        transform: scale(1.0);
        margin: 0 auto;
    }
    
    /* 移动端iPhone边框 */
    .iphone .frame {
        border-radius: 40px;
        box-shadow: 
            inset 0 0 0 3px #606467,
            inset 0 0 0 6px #e2e3e4,
            0 15px 30px rgba(0, 0, 0, 0.3);
        height: 486px;
        padding: 15px;
        width: 255px;
    }
    
    /* 移动端屏幕内容区域 */
    .iphone .content {
        border-radius: 24px;
        height: 456px;
        width: 225px;
        overflow: hidden;
        background: #000;
        position: relative;
    }
    
    /* 移动端竖版图片 - 完全铺满框架，无黑边 */
    .iphone .content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-width: 100%;
        min-height: 100%;
        /* 确保图片完全填充，即使宽高比不匹配 */
    }
    
    /* 移动端横图显示优化 - 减少上下留白 */
    .preview.landscape {
        padding: 2px 4px;
        min-height: auto;
    }
    
    .preview.landscape img {
        width: 100%;
        max-width: 100%;
        max-height: 60vh;
    }
    
    /* 移动端下载弹窗样式优化 */
    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        max-width: 90vw;
        width: 100%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease-out;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .download-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .download-btn {
        padding: 16px;
        border-radius: 14px;
        border: 2px solid #e2e8f0;
        background: #ffffff;
        color: #1e293b;
        font-size: 16px;
        font-weight: 600;
        justify-content: space-between;
        gap: 12px;
        box-shadow: none;
    }
    
    .download-btn svg {
        color: #334155;
    }
    
    .download-btn:hover {
        border-color: #2563eb;
        background: #f8fbff;
    }
    
    /* 移动端音量按钮区域装饰条纹 */
    .iphone .stripe::after,
    .iphone .stripe::before {
        border-width: 0 8px;
        height: 8px;
    }
    
    .iphone .stripe::after {
        top: 102px;
    }
    
    .iphone .stripe::before {
        bottom: 102px;
    }
    
    /* 移动端顶部刘海区域 */
    .iphone .header {
        height: 26px;
        margin-left: -61px;
        top: 18px;
        width: 99px;
        border-radius: 22px;
    }
    
    .iphone .header::after,
    .iphone .header::before {
        height: 26px;
        width: 8px;
    }
    
    /* 移动端摄像头 */
    .iphone .sensors::before {
        height: 8px;
        margin-left: 30px;
        top: 10px;
        width: 8px;
    }
    
    /* 移动端听筒 */
    .iphone .sensors::after {
        height: 5px;
        margin-left: -22px;
        top: 11px;
        width: 45px;
    }
    
    /* 移动端左侧按钮 */
    .iphone .btns {
        height: 20px;
        left: -2px;
        top: 69px;
        width: 2px;
    }
    
    .iphone .btns::after,
    .iphone .btns::before {
        height: 38px;
        width: 3px;
    }
    
    .iphone .btns::after {
        top: 36px;
    }
    
    .iphone .btns::before {
        top: 84px;
    }
    
    /* 移动端右侧电源键 */
    .iphone .power {
        height: 60px;
        right: -2px;
        top: 120px;
        width: 3px;
    }
    .fullscreen-img {
        max-width: 100vw;
        max-height: 100vh;
    }
    .related-section {
        padding: 0px 0 0px;
    }
    .related-container {
        padding: 20px;
    }
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }
    .related-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* Footer 样式 */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    padding: 10px 10px;
    margin-top: 10px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-links span {
    color: #64748b;
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 8px 0;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 10px 16px;
        margin-top: 10px;
    }
    
    .footer-links {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .footer-links a,
    .footer-links span {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
}

