:root {
    --main: #e50914;
    --accent: #f5c518;
    --bg: #0b0b0f;
    --text: #f5f5f7;
    --card-radius: 14px;
    --pill-radius: 50rem;
  }
  * { font-family: 'Inter', system-ui, sans-serif; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.45;
  }
  h1,h2,h3,h4,h5,h6 { font-weight: 900; letter-spacing: -0.02em; }
  .text-gold { color: var(--accent); }
  .text-red { color: var(--main); }
  .bg-dark-card { background: rgba(20,20,28,0.85); backdrop-filter: blur(8px); border-radius: var(--card-radius); }
  .navbar { background: #08080c; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0.5rem 1rem; }
  .navbar-brand { font-weight: 900; font-size: 1.7rem; color: var(--text); display: flex; align-items: center; }
  .navbar-brand i { color: var(--main); margin-right: 6px; }
  .nav-link { color: #ccc; font-weight: 500; margin: 0 8px; }
  .nav-link:hover { color: var(--accent); }
  .hero-band {
    background: radial-gradient(circle at 30% 20%, #1a1a24, var(--bg));
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .big-stat { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--accent); font-family: monospace; }
  .stat-label { color: #a9a9b3; font-size: 0.9rem; letter-spacing: 0.08em; }
  .progress-track { height: 4px; background: rgba(255,255,255,0.03); position: sticky; top: 0; z-index: 2000; }
  .progress-fill { height: 4px; background: linear-gradient(90deg, var(--main), var(--accent)); width: 0%; }
  .card-poster {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #18181f;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.6);
    transition: all 0.2s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .card-poster:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.3); }
  .poster-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; background: #2a2a33; }
  .card-info { padding: 0.55rem 0.75rem 0.7rem; }
  .card-title { font-weight: 700; font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .meta-tag { font-size: 0.7rem; background: rgba(255,255,255,0.08); padding: 0.15rem 0.5rem; border-radius: var(--pill-radius); color: #bbb; }
  .rating-badge { background: var(--accent); color: #000; font-weight: 800; font-size: 0.8rem; border-radius: var(--pill-radius); padding: 0 8px; }
  .ep-badge { background: rgba(229,9,20,0.8); color: white; font-size: 0.65rem; padding: 0.15rem 0.6rem; border-radius: var(--pill-radius); position: absolute; top: 8px; left: 8px; backdrop-filter: blur(4px); }
  .section-title { font-weight: 900; font-size: 1.5rem; margin: 2.2rem 0 1.2rem; display: flex; align-items: center; gap: 10px; }
  .section-title i { color: var(--main); }
  .btn-round { border-radius: var(--pill-radius); padding: 0.5rem 1.4rem; font-weight: 600; }
  .btn-capsule { background: transparent; border: 1px solid #3a3a45; color: #ddd; border-radius: var(--pill-radius); padding: 0.2rem 1rem; font-size: 0.8rem; }
  .btn-capsule.active { background: var(--main); border-color: var(--main); color: white; }
  .footer-links { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }
  .timeline { border-left: 2px solid #333; padding-left: 1.5rem; }
  .timeline-item { position: relative; margin-bottom: 1.5rem; }
  .timeline-item::before { content: ""; position: absolute; left: -1.8rem; top: 0.4rem; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
  /* 弹窗 */
  .modal-backdrop-full { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 3000; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: 0.2s; }
  .modal-card { width: min(500px, 90vw); background: #14141d; border-radius: 24px; padding: 2rem; border: 1px solid rgba(255,255,255,0.2); }
  .modal-card h4 { font-weight: 800; }
  .modal-badge { background: var(--accent); color: #000; padding: 0.2rem 1rem; border-radius: var(--pill-radius); }
  .tag-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--pill-radius); padding: 0.3rem 1.2rem; font-size: 0.85rem; }
  .tag-btn:hover { border-color: var(--accent); color: var(--accent); }
  .friend-links { background: #0e0e14; padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
  .friend-links a { color: #8f8f9c; margin: 0 0.8rem; }
  .friend-links a:hover { color: var(--accent); }
  .recommend-box { background: linear-gradient(145deg, #15151f, #1c1c28); border-radius: 24px; padding: 2rem; }
  .lazy-img { background: linear-gradient(110deg, #1e1e28 30%, #262633 50%, #1e1e28 70%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
  @keyframes shimmer { to { background-position: -200% 0; } }
  .hover-shine { position: relative; overflow: hidden; }
  .hover-shine::after { content: ""; position: absolute; top: 0; left: -80%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.1), transparent); transform: skewX(-20deg); transition: left 0.4s; }
  .hover-shine:hover::after { left: 120%; }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .about-hero { padding: 80px 0 40px; position: relative; }
.about-hero h1 { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.02em; }
.about-section { padding: 50px 0; }
.about-section h2 { font-weight: 800; margin-bottom: 1.5rem; position: relative; display: inline-block; }
.about-section h2::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--main); border-radius: 2px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 30px; }
.feature-item { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--card-radius); padding: 28px 24px; transition: transform 0.3s ease, border-color 0.3s ease; }
.feature-item:hover { transform: translateY(-5px); border-color: var(--main); }
.feature-item i { font-size: 2rem; color: var(--main); margin-bottom: 14px; }
.feature-item h4 { font-weight: 700; margin-bottom: 10px; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.timeline-block { margin-top: 40px; }
.timeline-item h5 { font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; }
.principle-box { background: rgba(229, 9, 20, 0.08); border-left: 3px solid var(--main); padding: 18px 22px; border-radius: 0 var(--card-radius) var(--card-radius) 0; margin-bottom: 18px; }
.principle-box h5 { font-weight: 700; color: var(--text); margin-bottom: 6px; }
.principle-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }
.stat-band { background: var(--card-bg); border-radius: var(--card-radius); padding: 40px 30px; text-align: center; margin: 40px 0; border: 1px solid var(--border-color); }
.about-hero h1 { font-size: 2rem; }
.about-hero { padding: 50px 0 30px; }
.about-section { padding: 35px 0; }

/* --- 子页面追加 --- */
.nav-link:hover, .nav-link.active {
            color: var(--accent) !important;
            background: rgba(245, 197, 24, 0.08);
        }
.page-hero {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.9) 50%, rgba(245, 197, 24, 0.08) 100%);
            padding: 60px 0 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
.page-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
.page-subtitle {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.filter-bar {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--card-radius);
            padding: 20px;
            margin-bottom: 40px;
        }
.filter-label {
            font-weight: 600;
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
.filter-tag {
            display: inline-block;
            padding: 6px 18px;
            margin: 4px;
            border-radius: var(--pill-radius);
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            background: transparent;
        }
.filter-tag:hover, .filter-tag.active {
            border-color: var(--main);
            color: var(--text);
            background: rgba(229, 9, 20, 0.15);
        }
.movie-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--card-radius);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 24px;
        }
.movie-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
            border-color: rgba(229, 9, 20, 0.4);
        }
.movie-poster {
            position: relative;
            aspect-ratio: 2/3;
            overflow: hidden;
        }
.movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.movie-card:hover .movie-poster img {
            transform: scale(1.05);
        }
.movie-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(229, 9, 20, 0.9);
            color: #fff;
            padding: 4px 14px;
            border-radius: var(--pill-radius);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
.movie-rating {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(245, 197, 24, 0.95);
            color: #0b0b0f;
            padding: 4px 12px;
            border-radius: var(--pill-radius);
            font-weight: 700;
            font-size: 0.9rem;
        }
.movie-info {
            padding: 16px;
        }
.movie-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.movie-meta {
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
.movie-type {
            background: rgba(255,255,255,0.08);
            padding: 3px 10px;
            border-radius: var(--pill-radius);
            font-size: 0.75rem;
            color: rgba(255,255,255,0.7);
        }
.section-divider {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin: 60px 0;
        }
.footer {
            background: rgba(11, 11, 15, 0.95);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 40px 0;
            margin-top: 60px;
        }
.footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-right: 24px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
.footer-links a:hover {
            color: var(--accent);
        }
.pagination {
            justify-content: center;
            margin-top: 40px;
        }
.page-link {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text);
            margin: 0 4px;
            border-radius: 8px !important;
            padding: 8px 18px;
            transition: all 0.3s;
        }
.page-link:hover {
            background: rgba(229, 9, 20, 0.2);
            border-color: var(--main);
            color: var(--text);
        }
.page-item.active .page-link {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.sort-select {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            color: var(--text);
            padding: 8px 16px;
            border-radius: var(--pill-radius);
            font-size: 0.9rem;
            cursor: pointer;
        }
.sort-select:focus {
            outline: none;
            border-color: var(--main);
        }
.sort-select option {
            background: #1a1a1f;
            color: var(--text);
        }
.result-count {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
.page-title {
                font-size: 1.8rem;
            }
.filter-bar {
                padding: 16px;
            }
.filter-tag {
                padding: 5px 12px;
                font-size: 0.8rem;
            }
.movie-info {
                padding: 12px;
            }

/* --- 子页面追加 --- */
.page-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
.page-hero p {
            color: rgba(245, 245, 247, 0.7);
            font-size: 1.05rem;
            max-width: 700px;
        }
.section-block {
            margin-bottom: 3rem;
            padding: 2rem 0;
        }
.section-block .inner-container {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--card-radius);
            padding: 2.2rem;
        }
.section-block h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--text);
            border-left: 4px solid var(--main);
            padding-left: 1rem;
        }
.section-block h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            color: var(--text);
        }
.section-block p {
            color: rgba(245, 245, 247, 0.8);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
.section-block ul {
            padding-left: 1.2rem;
            color: rgba(245, 245, 247, 0.8);
            line-height: 1.8;
        }
.section-block li {
            margin-bottom: 0.4rem;
        }
.section-block li strong {
            color: var(--accent);
        }
.feature-icon {
            font-size: 2rem;
            color: var(--main);
            margin-bottom: 1rem;
        }
.pill-tag {
            display: inline-block;
            background: rgba(229, 9, 20, 0.15);
            color: var(--main);
            padding: 0.3rem 1rem;
            border-radius: var(--pill-radius);
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
.pill-tag.gold {
            background: rgba(245, 197, 24, 0.12);
            color: var(--accent);
        }
.timeline-item h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
.timeline-item .time {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 500;
        }
.stat-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--card-radius);
            padding: 1.8rem 1.5rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
.stat-card:hover {
            transform: translateY(-4px);
            border-color: rgba(229, 9, 20, 0.4);
        }
.stat-card .big-stat {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--main);
        }
.stat-card .stat-label {
            font-size: 0.95rem;
            color: rgba(245, 245, 247, 0.7);
            margin-top: 0.5rem;
        }
.navbar .nav-link {
            color: var(--text);
        }
.navbar .nav-link:hover {
            color: var(--accent);
        }
.page-nav-highlight {
            color: var(--accent) !important;
            font-weight: 600;
        }
.btn-round:hover {
            background: #b80710;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
        }
.footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(245, 245, 247, 0.5);
            font-size: 0.9rem;
        }

/* --- 子页面追加 --- */
/* 页面专属微调样式，自动合并进站点CSS */
        .category-hero {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.9) 70%), url('https://picsum.photos/1920/600') center/cover no-repeat;
            padding: 6rem 0 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.genre-pills .pill {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border-radius: var(--pill-radius);
            background: rgba(255,255,255,0.07);
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            margin: 0.25rem;
            text-decoration: none;
        }
.genre-pills .pill:hover {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
            transform: translateY(-2px);
        }
.genre-pills .pill.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.action-feature-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--card-radius);
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
.action-feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--main);
            background: rgba(229, 9, 20, 0.08);
        }
.action-feature-card i {
            font-size: 2rem;
            color: var(--main);
            margin-bottom: 1rem;
        }
.action-feature-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
        }
.action-feature-card p {
            font-size: 0.9rem;
            color: rgba(245,245,247,0.7);
            line-height: 1.6;
            margin-bottom: 0;
        }
.badge-custom {
            background: var(--main);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 0.9rem;
            border-radius: var(--pill-radius);
            letter-spacing: 0.5px;
        }
.card-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
.card-poster:hover img {
            transform: scale(1.06);
        }
.card-poster .rating-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0,0,0,0.75);
            color: var(--accent);
            font-weight: 700;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            font-size: 0.85rem;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(245,197,24,0.3);
        }
.card-poster .ep-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--main);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.7rem;
            border-radius: var(--pill-radius);
        }
.section-title h2 {
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0;
            color: var(--text);
        }
.section-title .title-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, var(--main) 0%, rgba(255,255,255,0.1) 100%);
        }
.trend-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(229,9,20,0.15);
            color: var(--main);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.25rem 0.9rem;
            border-radius: var(--pill-radius);
            border: 1px solid rgba(229,9,20,0.3);
        }
.trend-tag i {
            font-size: 0.75rem;
        }
.timeline-item::after {
            content: '';
            position: absolute;
            left: -6px;
            top: 6px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--main);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 3px rgba(229,9,20,0.3);
        }
.category-hero {
                padding: 4rem 0 2.5rem;
            }
.section-title h2 {
                font-size: 1.3rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            padding: 60px 0 30px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 30px;
        }
.disclaimer-section {
            padding: 24px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
.disclaimer-section:last-of-type {
            border-bottom: none;
        }
.disclaimer-section h2 {
            color: var(--accent);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.disclaimer-section h2 i {
            color: var(--main);
            font-size: 1.2rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: rgba(245,245,247,0.85);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
.disclaimer-section ul li {
            margin-bottom: 8px;
        }
.notice-box {
            background: rgba(229,9,20,0.08);
            border-left: 4px solid var(--main);
            padding: 18px 20px;
            border-radius: 0 var(--card-radius) var(--card-radius) 0;
            margin: 20px 0;
        }
.notice-box p {
            margin: 0;
            color: var(--text);
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.contact-link {
            color: var(--main);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dashed var(--main);
        }
.contact-link:hover {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }
.disclaimer-hero { padding: 40px 0 20px; }
.disclaimer-section h2 { font-size: 1.2rem; }

/* --- 子页面追加 --- */
/* 排行榜专属样式 */
        .rank-hero {
            background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(11, 11, 15, 0.9) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
.rank-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
.rank-hero p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            max-width: 700px;
        }
.rank-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin: 30px 0 0;
            padding: 0;
            list-style: none;
        }
.rank-tabs li a {
            display: inline-block;
            padding: 8px 20px;
            border-radius: var(--pill-radius);
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
.rank-tabs li a:hover,
        .rank-tabs li a.active {
            background: var(--main);
            border-color: var(--main);
            color: #fff;
        }
.rank-section {
            padding: 50px 0;
        }
.rank-section:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }
.rank-list {
            margin-top: 25px;
        }
.rank-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--card-radius);
            margin-bottom: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
.rank-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(6px);
            border-color: rgba(229, 9, 20, 0.3);
        }
.rank-number {
            font-size: 1.8rem;
            font-weight: 900;
            width: 60px;
            text-align: center;
            color: rgba(255, 255, 255, 0.25);
            font-style: italic;
            flex-shrink: 0;
        }
.rank-item:nth-child(1) .rank-number,
        .rank-item:nth-child(2) .rank-number,
        .rank-item:nth-child(3) .rank-number {
            color: var(--accent);
        }
.rank-poster {
            width: 60px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 16px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.1);
        }
.rank-info {
            flex: 1;
            min-width: 0;
        }
.rank-info h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
.rank-meta {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
.rank-score {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--accent);
            margin-left: 16px;
            flex-shrink: 0;
        }
.rank-trend {
            font-size: 0.75rem;
            color: #4ade80;
            margin-left: 8px;
            flex-shrink: 0;
        }
.rank-trend.down {
            color: #f87171;
        }
.rank-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-top: 30px;
        }
.stat-card .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
        }
.stat-card .label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }
.trending-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
.trending-tags .tag {
            background: rgba(245, 197, 24, 0.1);
            border: 1px solid rgba(245, 197, 24, 0.2);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: var(--pill-radius);
            font-size: 0.85rem;
            font-weight: 600;
        }
.rank-hero h1 {
                font-size: 2rem;
            }
.rank-item {
                flex-wrap: wrap;
                padding: 12px 14px;
            }
.rank-number {
                width: 40px;
                font-size: 1.4rem;
            }
.rank-poster {
                width: 48px;
                height: 64px;
                margin-right: 12px;
            }
.rank-score {
                margin-left: 0;
                margin-top: 6px;
            }