* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #ffffff;
    color: #4a5568;
}

/* Navigation - 使用about.css的样式 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #408cc8, #40C782);
    padding: 1.2rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 30px;
    position: relative;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.15);
}

.nav-links a.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.lang-switcher {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
    list-style: none;
}

.lang-switcher a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-switcher a.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

.lang-switcher a:not(.active):hover {
    background: rgba(255,255,255,0.1);
}

/* Media Section */
.media-section {
    max-width: 1400px;
    margin: 100px auto 0;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
}

.section-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #333;
    background: linear-gradient(to right, #408cc8, #40C782);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header p {
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 28px;
    font-size: 1.2rem;
    color: #4a5568;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active {
    color: #408cc8;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #408cc8, #40C782);
}

.tab-btn:hover:not(.active) {
    color: #408cc8;
}

/* Media Container */
.media-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.media-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.media-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.media-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-card:hover .media-thumbnail img {
    transform: scale(1.08);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.play-icon i {
    color: #408cc8;
    font-size: 28px;
    margin-left: 4px;
}

.media-card:hover .play-icon {
    opacity: 1;
}

.media-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.media-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.4;
}

.media-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    color: #4a5568;
    font-size: 0.95rem;
    padding-top: 1.2rem;
    border-top: 1px solid #eee;
}

.video-badge {
    background: linear-gradient(to right, #408cc8, #40C782);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.picture-badge {
    background: linear-gradient(to right, #40C782, #408cc8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a7cc7 0%, #2ec57d 100%);
    color: white;
    padding: 5rem 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('static/image/logo.png') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-section p:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline;
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: normal;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.media-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.media-card-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    text-decoration: none;
}

footer,
.footer-section h4,
.footer-section p,
.footer-section a,
.footer-bottom,
.footer-bottom a {
    color: #ffffff !important;
}

/* 公安备案号超链接：保留动画、移除下划线 */
.footer-bottom a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* 移除所有伪元素下划线动画 */
.footer-bottom a::before,
.footer-bottom a::after {
    content: none !important;
}

/* 悬停/点击效果：颜色变白 + 轻微右移 */
.footer-bottom a:hover,
.footer-bottom a:active {
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

/* 回到顶部按钮样式 */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(to right, #408cc8, #40C782);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

#backToTop:active {
    transform: scale(0.95);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .media-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #408cc8, #40C782);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }
    
    .lang-switcher {
        margin-left: 0;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .media-container {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .section-header h1 {
        font-size: 2.3rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }

    .category-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 10px 22px;
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1rem;
    }
    
    .media-section {
        padding: 0 1.2rem;
    }

    .section-header {
        padding-top: 2rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0.8rem;
    }
    
    .media-thumbnail {
        height: 200px;
    }
}

/* 导航栏媒体链接在顶部时的椭圆背景效果 */
.navbar-top .nav-links a[href="./media.html"] {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* 确保在非顶部状态时，媒体链接仍然有活动状态样式 */
.nav-links a[href="./media.html"] {
    background: rgba(255,255,255,0.2);
    color: white;
}

    /* 夜间模式切换按钮 */
    .theme-toggle {
        position: fixed;
        top: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #408cc8, #40C782);
        border: none;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .theme-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* 夜间模式全局样式 */
    body.dark-mode {
        background: #0a0a0a;
        color: #e0e0e0;
    }

    /* 夜间模式下的导航栏 - 保持蓝绿色背景并添加遮罩效果 */
    body.dark-mode .navbar {
        background: linear-gradient(135deg, #2a7cc7 0%, #2ec57d 100%) !important;
    }

    body.dark-mode .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }

    /* 导航栏文字颜色 */
    body.dark-mode .navbar .logo,
    body.dark-mode .navbar .nav-links a {
        color: white !important;
    }

    /* 导航链接在暗色模式下的悬停效果 */
    body.dark-mode .nav-links a:hover,
    body.dark-mode .nav-links a.active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
    }

    /* 汉堡菜单在暗色模式下的颜色 */
    body.dark-mode .hamburger {
        color: white !important;
    }

    /* 语言切换器在暗色模式下的样式 */
    body.dark-mode .lang-switcher a {
        color: white !important;
    }

    body.dark-mode .lang-switcher a.active,
    body.dark-mode .lang-switcher a:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
    }

    /* 夜间模式下的媒体区域 */
    body.dark-mode .media-section {
        background: #0a0a0a;
    }

    body.dark-mode .section-header h1 {
        background: linear-gradient(to right, #408cc8, #40C782);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    body.dark-mode .section-header p {
        color: #b0b0b0;
    }

    /* 夜间模式下的分类标签 */
    body.dark-mode .category-tabs {
        border-bottom: 1px solid #333;
    }

    body.dark-mode .tab-btn {
        color: #b0b0b0;
    }

    body.dark-mode .tab-btn.active {
        color: #408cc8;
    }

    body.dark-mode .tab-btn:hover:not(.active) {
        color: #408cc8;
    }

    /* 夜间模式下的媒体卡片 */
    body.dark-mode .media-card {
        background: #2a2a2a;
        color: #e0e0e0;
    }

    body.dark-mode .media-content h3 {
        color: #e0e0e0;
    }

    body.dark-mode .media-content p {
        color: #b0b0b0;
    }

    body.dark-mode .media-meta {
        color: #b0b0b0;
        border-top: 1px solid #333;
    }

    /* 夜间模式下的页脚 */
    body.dark-mode footer {
        background: linear-gradient(135deg, #1a4a7a 0%, #1a7a4a 100%);
    }

    body.dark-mode .footer-section p,
    body.dark-mode .footer-section a {
        color: rgba(255, 255, 255, 0.8);
    }

    /* 夜间模式下的返回顶部按钮 */
    body.dark-mode #backToTop {
        background: linear-gradient(135deg, #1a4a7a, #1a7a4a);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .theme-toggle {
            top: 80px;
            right: 15px;
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
    }

    /* 图片模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin-top: 2%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-caption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px 20px;
    max-width: 90%;
    margin: 0 auto;
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.modal-caption p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #40C782;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 夜间模式下的模态框 */
body.dark-mode .modal {
    background-color: rgba(0, 0, 0, 0.9);
}

body.dark-mode .modal-caption {
    color: #e0e0e0;
}

/* 图片卡片悬停提示样式 */
.picture-card {
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.picture-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.picture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.1), rgba(64, 199, 130, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.picture-card:hover::after {
    opacity: 1;
}

.picture-card .media-thumbnail::before {
    content: '🔍 View Full Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    white-space: nowrap;
}

.picture-card:hover .media-thumbnail::before {
    opacity: 1;
}

.picture-card .media-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.3), rgba(64, 199, 130, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.picture-card:hover .media-thumbnail::after {
    opacity: 1;
}

/* 图片卡片点击动画 */
.picture-card:active {
    transform: translateY(-5px) scale(0.98);
    transition: transform 0.1s ease;
}

/* 夜间模式下的图片卡片悬停效果 */
body.dark-mode .picture-card::after {
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.15), rgba(64, 199, 130, 0.15));
}

body.dark-mode .picture-card .media-thumbnail::before {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

body.dark-mode .picture-card .media-thumbnail::after {
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.4), rgba(64, 199, 130, 0.4));
}

/* 模态框关闭按钮悬停效果 */
.close-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(64, 199, 130, 0.7);
}

/* 模态框图片悬停效果 */
.modal-content {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.modal-content:hover {
    transform: scale(1.02);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .picture-card .media-thumbnail::before {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .picture-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Press Kit 按钮样式 - 保持标题居中 */
.header-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.press-kit-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 14px 28px;
    background: linear-gradient(135deg, #408cc8, #40C782);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(64, 140, 200, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    z-index: 10;
}

.press-kit-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 25px rgba(64, 140, 200, 0.4);
    background: linear-gradient(135deg, #3a7db8, #38b574);
}

.press-kit-btn:active {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 4px 15px rgba(64, 140, 200, 0.3);
}

.press-kit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.press-kit-btn:hover i {
    transform: translateY(-2px);
}

.header-text {
    text-align: center;
    width: 100%;
}

/* 夜间模式下的Press Kit按钮 */
body.dark-mode .press-kit-btn {
    background: linear-gradient(135deg, #2a7cc7, #2ec57d);
    box-shadow: 0 6px 20px rgba(42, 124, 199, 0.4);
}

body.dark-mode .press-kit-btn:hover {
    background: linear-gradient(135deg, #256eb0, #27ad6c);
    box-shadow: 0 10px 25px rgba(42, 124, 199, 0.5);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .press-kit-btn {
        padding: 12px 24px;
        font-size: 1.05rem;
    }
}

@media (max-width: 900px) {
    .header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .press-kit-btn {
        position: static;
        transform: none;
        order: -1;
    }
    
    .press-kit-btn:hover {
        transform: scale(1.05);
    }
    
    .press-kit-btn:active {
        transform: scale(1.02);
    }
}

@media (max-width: 600px) {
    .press-kit-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* 中文版图片卡片样式 */
.picture-card-cn {
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.picture-card-cn:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.picture-card-cn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.1), rgba(64, 199, 130, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.picture-card-cn:hover::after {
    opacity: 1;
}

.picture-card-cn .media-thumbnail::before {
    content: '🔍 点击查看大图';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    white-space: nowrap;
}

.picture-card-cn:hover .media-thumbnail::before {
    opacity: 1;
}

.picture-card-cn .media-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.3), rgba(64, 199, 130, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.picture-card-cn:hover .media-thumbnail::after {
    opacity: 1;
}

.picture-card-cn:active {
    transform: translateY(-5px) scale(0.98);
    transition: transform 0.1s ease;
}

/* 夜间模式下的中文版图片卡片悬停效果 */
body.dark-mode .picture-card-cn::after {
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.15), rgba(64, 199, 130, 0.15));
}

body.dark-mode .picture-card-cn .media-thumbnail::before {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

body.dark-mode .picture-card-cn .media-thumbnail::after {
    background: linear-gradient(135deg, rgba(64, 140, 200, 0.4), rgba(64, 199, 130, 0.4));
}

/* 响应式调整 */
@media (max-width: 768px) {
    .picture-card-cn .media-thumbnail::before {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .picture-card-cn:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* YouTube 嵌入样式 */
.youtube-embed {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 移除视频卡片的链接悬停效果 */
.media-card {
    cursor: default;
}

.media-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}