        :root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --bg-primary: #0f1419;
            --bg-secondary: #1a2027;
            --bg-card: #161b22;
            --text-primary: #ffffff;
            --text-secondary: #b0b6be;
            --text-muted: #7d8590;
            --border: #30363d;
            --radius: 8px;
            --shadow: 0 4px 16px rgba(0,0,0,0.4);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        .container { width: 100% !important; max-width: none !important; margin: 0 auto; padding: 0 32px; }

        /* 头部导航 */
        .header {
            background: rgba(15, 20, 25, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .logo {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: var(--radius);
            transition: all 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
            background: rgba(255, 107, 53, 0.1);
        }

        .search-box {
            display: flex;
            background: var(--bg-secondary);
            border-radius: 24px;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .search-box input {
            background: none;
            border: none;
            padding: 10px 20px;
            width: 220px;
            color: var(--text-primary);
            outline: none;
        }

        .search-box input::placeholder { color: var(--text-muted); }

        .search-box button {
            background: var(--primary);
            border: none;
            padding: 10px 20px;
            color: white;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s;
        }

        .search-box button:hover { background: var(--primary-dark); }

        /* 主内容 */
        .main-content {
            margin-top: 64px;
            padding: 30px 0;
            min-height: calc(100vh - 64px);
        }

        /* 面包屑 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        .breadcrumb span { margin: 0 8px; }

        /* 页面头部 */
        .page-hero {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            color: white;
            padding: 40px;
            border-radius: 16px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .page-hero-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
        }

        .page-hero-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            position: relative;
        }

        /* 分类标签 */
        .update-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .update-tab {
            padding: 10px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            color: var(--text-secondary);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
        }

        .update-tab:hover,
        .update-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* 更新区块 */
        .update-section {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
        }

        .update-section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--primary);
        }

        .update-section-title .icon { font-size: 1.5rem; }

        .update-section-title .badge {
            background: #10b981;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            margin-left: auto;
        }

        /* 影片网格 */
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
        }

        .movie-card {
            position: relative;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid var(--border);
        }

        .movie-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            border-color: var(--primary);
        }

        .movie-card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .movie-poster {
            position: relative;
            padding-bottom: 140%;
            background: var(--bg-primary);
        }

        .movie-poster img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .movie-card:hover .movie-poster img { transform: scale(1.05); }

        .movie-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: linear-gradient(135deg, #ff4757, #ff6b6b);
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
        }

        .movie-badge.new {
            background: linear-gradient(135deg, #10b981, #34d399);
        }

        .movie-score {
            position: absolute;
            top: 8px;
            left: 8px;
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #000;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
        }

        .movie-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .movie-card:hover .movie-play-overlay { opacity: 1; }

        .movie-play-overlay::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 12px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        .movie-info { padding: 12px; }

        .movie-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .movie-meta {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            justify-content: space-between;
        }

        .movie-update-time {
            color: #10b981;
            font-size: 11px;
        }

        /* 页脚 */
        .footer {
            background: var(--bg-secondary);
            margin-top: 60px;
            border-top: 1px solid var(--border);
        }

        .footer-links { padding: 40px 0; }

        .footer-nav {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .footer-section h4 {
            color: var(--primary);
            font-size: 16px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }

        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 8px; }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section a:hover { color: var(--primary); }

        .footer-copyright {
            background: var(--bg-primary);
            padding: 20px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-copyright .copyright-en {
            font-size: 12px;
            opacity: 0.8;
            margin-top: 8px;
        }

        .footer-sitemap-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            margin-top: 30px;
        }

        .footer-sitemap-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-sitemap-links a:hover {
            color: var(--primary);
        }

        /* 返回顶部 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: var(--shadow);
        }

        .back-to-top.visible { opacity: 1; visibility: visible; }

        .back-to-top::after {
            content: '';
            width: 10px;
            height: 10px;
            border-left: 2px solid white;
            border-top: 2px solid white;
            transform: rotate(45deg);
            margin-top: 4px;
        }

        /* 响应式 */
        @media (max-width: 1400px) {
            .movie-grid { grid-template-columns: repeat(5, 1fr); }
        }

        @media (max-width: 1200px) {
            .movie-grid { grid-template-columns: repeat(4, 1fr); }
        }

        @media (max-width: 992px) {
            .movie-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -280px;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 80px 20px 20px;
                transition: left 0.3s;
            }

            .nav-menu.active { left: 0; }

            .nav-menu a {
                padding: 12px 16px;
                border-bottom: 1px solid var(--border);
            }

            .nav-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.6);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
            }

            .nav-overlay.active { opacity: 1; visibility: visible; }

            .search-box { display: none; }

            .page-hero { padding: 24px; }
            .page-hero-title { font-size: 1.5rem; }

            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .update-tabs {
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 10px;
            }

            .update-tab { flex-shrink: 0; }

            .footer-nav { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .movie-info { padding: 10px; }
            .movie-title { font-size: 13px; }
        }
    </style>
