        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background: #0b0f1a url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDQwIDQwIj48cGF0aCBkPSJNMCAwaDQwdjQwSDB6IiBmaWxsPSIjMTIxODI0Ii8+PHJlY3QgeD0iMTAiIHk9IjgiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyNCIgZmlsbD0iIzFhMjMzNCIvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjUiIGZpbGw9IiMyYzM4NTMiLz48L3N2Zz4=') repeat;
            min-height: 100vh;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* 主胶片匣容器 */
        .film-vault {
            max-width: 1400px;
            width: 100%;
            background: rgba(8, 12, 22, 0.9);
            backdrop-filter: blur(5px);
            border: 2px solid #384662;
            border-radius: 48px 48px 36px 36px;
            box-shadow: 0 30px 50px -10px black, inset 0 0 0 1px #5e739b;
            padding: 2.5rem 2rem 2rem 2rem;
            position: relative;
            margin-bottom: 2rem;
        }

        /* 胶片齿孔 */
        .film-perf {
            position: absolute;
            left: 0;
            width: 100%;
            height: 26px;
            background: repeating-linear-gradient(90deg, 
                #3e4b68 0px, #3e4b68 20px, 
                #202839 20px, #202839 40px);
            border-top: 2px solid #4b5c81;
            border-bottom: 2px solid #0f1421;
        }
        .perf-top {
            top: -2px;
            border-radius: 48px 48px 0 0;
        }
        .perf-bottom {
            bottom: -2px;
            border-radius: 0 0 36px 36px;
        }

        /* 头部 */
        .header-strip {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 2rem;
            border-bottom: 2px solid #3e5077;
            padding-bottom: 0.8rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .header-strip h2 {
            font-size: 2.2rem;
            font-weight: 600;
            background: linear-gradient(135deg, #f2e6cf, #b8ceff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .page-indicator {
            background: #1d273f;
            border: 1px solid #5e75a6;
            border-radius: 40px;
            padding: 0.4rem 1.5rem;
            color: #c7d6ff;
            font-size: 1.3rem;
        }
        .page-indicator span {
            background: #334668;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            color: white;
            font-weight: 700;
            margin: 0 0.2rem;
        }

        /* 网格：每页10张卡片（两行五列） */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 2rem 0 2rem;
        }

        /* 卡片：更紧凑，高度更小 */
        .movie-card {
            display: block;
            text-decoration: none;
            border-radius: 20px;
            overflow: hidden;
            background: #1a2133;
            border: 2px solid #4c5f88;
            box-shadow: 0 12px 18px -10px #010314;
            transition: transform 0.2s ease, border-color 0.2s;
            color: white;
        }

        .movie-card:hover {
            transform: translateY(-5px);
            border-color: #adc3ff;
        }

        /* 图片区域 - 固定比例但高度缩小 */
        .card-image {
            width: 100%;
            aspect-ratio: 2 / 2.5;  /* 稍微扁一点，让卡片更矮 */
            overflow: hidden;
            background-color: #2a3349;
        }
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.2s ease;
        }
        .movie-card:hover .card-image img {
            transform: scale(1.02);
        }

        /* 卡片文字内容 - 极简，只保留年份+片名，padding缩小 */
        .card-content {
            background: linear-gradient(0deg, #0f1628, #1c253c);
            padding: 0.6rem 0.8rem 0.7rem 0.8rem;
            border-top: 1px solid #3e5280;
            text-align: center;
        }

        /* 年份大字 - 稍小 */
        .card-year-big {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 0 6px #2f6eff;
            letter-spacing: 1px;
        }

        .film-title {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            text-shadow: 0 1px 3px black;
            line-height: 1.3;
            margin-top: 0.15rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* 分页横条 (10页) */
        .pagination-row {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.7rem;
            background: #0f1629cc;
            border-radius: 60px;
            padding: 1rem 2.2rem;
            border: 1px solid #3a4a73;
            backdrop-filter: blur(8px);
            margin: 1.5rem 0 0.5rem;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            height: 44px;
            background: #1b253f;
            border-radius: 44px;
            color: #bfd0ff;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border: 1px solid #40537e;
            transition: all 0.2s;
            box-shadow: 0 4px 8px #020412;
        }
        .page-link.current {
            background: #4a6293;
            color: white;
            border: 2px solid #b1c6ff;
            transform: scale(1.06);
        }
        .page-link:hover {
            background: #314b7a;
            border-color: #98aff2;
            color: white;
        }

        .footer-note {
            display: flex;
            justify-content: space-between;
            color: #6d80ae;
            border-top: 1px dashed #31415f;
            padding-top: 1.2rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .badge-list {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* 响应式 */
        @media (max-width: 1000px) {
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 700px) {
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 450px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
