:root {
            --pink: #eb55bf;
            --purple: #b292ea;
            --blue: #8bdbf5;
            --light-green: #f1ffd9;
            --pink-dark: #c940a0;
            --purple-dark: #8e6ec7;
            --blue-dark: #5db8d4;
            --green-dark: #d4e8b8;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--gray-50);
            color: var(--gray-800);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--pink);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(235, 85, 191, 0.45);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
            z-index: 9999;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            box-shadow: 0 6px 24px rgba(235, 85, 191, 0.65);
            transform: scale(1.05);
        }
        @media (max-width: 600px) {
            .back-to-top { bottom: 20px; right: 16px; width: 38px; height: 38px; font-size: 1.1rem; }
        }
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .top-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(12px, 3vw, 28px);
            height: 60px;
            gap: 16px;
        }
        .site-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            text-decoration: none;
            color: inherit;
        }
        .site-brand h1 {
            font-size: clamp(1.1rem, 2.5vw, 1.45rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            letter-spacing: -0.02em;
        }
        .site-brand .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--pink), var(--purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: clamp(6px, 1.2vw, 16px);
            list-style: none;
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 4px 0;
            flex-shrink: 1;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-size: 0.875rem;
            font-weight: 500;
            white-space: nowrap;
            padding: 6px 12px;
            border-radius: 20px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--pink-dark);
            background: #fce4f7;
            outline: none;
        }
        .user-status {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            padding: 7px 16px;
            border-radius: 24px;
            background: linear-gradient(135deg, #fdf2fa, #f8f0ff);
            border: 1.5px solid #f0d5f5;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray-700);
            transition: var(--transition);
            white-space: nowrap;
        }
        .user-status:hover {
            border-color: var(--pink);
            box-shadow: 0 0 0 3px rgba(235, 85, 191, 0.08);
        }
        .user-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(12px, 3vw, 28px);
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        @media (min-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr 340px;
                gap: 32px;
            }
        }
        @media (min-width: 1200px) {
            .main-container {
                grid-template-columns: 1fr 370px;
                gap: 36px;
            }
        }
        .content-area {
            min-width: 0;
        }
        .sidebar-area {
            min-width: 0;
        }
        .section-block {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: clamp(18px, 3vw, 28px);
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-100);
            transition: var(--transition);
        }
        .section-block:hover {
            box-shadow: var(--shadow-md);
        }
        .section-title {
            font-size: clamp(1.1rem, 2.2vw, 1.35rem);
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 18px;
            padding-left: 14px;
            border-left: 4px solid var(--pink);
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .section-title .badge {
            font-size: 0.75rem;
            font-weight: 500;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: #fff;
            padding: 3px 10px;
            border-radius: 12px;
            white-space: nowrap;
            letter-spacing: 0;
        }
        .section-subtitle {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-top: -10px;
            margin-bottom: 16px;
            padding-left: 18px;
        }
        .banner-carousel {
            position: relative;
            width: 100%;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 16 / 7;
            background: var(--gray-200);
            margin-bottom: 24px;
            min-height: 200px;
        }
        @media (max-width: 640px) {
            .banner-carousel {
                aspect-ratio: 16 / 10;
                border-radius: var(--radius);
            }
        }
        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            flex-shrink: 0;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(20px, 5vw, 40px);
            pointer-events: none;
        }
        .banner-overlay h2 {
            color: #fff;
            font-size: clamp(1.3rem, 3.5vw, 2rem);
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }
        .banner-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(0.8rem, 1.5vw, 0.95rem);
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
            max-width: 600px;
        }
        .banner-dots {
            position: absolute;
            bottom: 14px;
            right: 20px;
            display: flex;
            gap: 8px;
            z-index: 5;
        }
        .banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }
        .banner-dot.active {
            background: #fff;
            transform: scale(1.35);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            background: rgba(255, 255, 255, 0.85);
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.1rem;
            color: var(--gray-700);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            opacity: 0;
        }
        .banner-carousel:hover .banner-arrow,
        .banner-carousel:focus-within .banner-arrow {
            opacity: 1;
        }
        @media (max-width: 640px) {
            .banner-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                opacity: 0.7;
            }
        }
        .banner-arrow:hover {
            background: #fff;
            box-shadow: var(--shadow-lg);
        }
        .banner-arrow.prev {
            left: 12px;
        }
        .banner-arrow.next {
            right: 12px;
        }
        .platform-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .platform-intro-text {
            flex: 1 1 280px;
        }
        .platform-intro-text h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 10px;
        }
        .platform-intro-text p {
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .platform-intro-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            flex: 1 1 200px;
            justify-content: flex-end;
        }
        .stat-card {
            background: linear-gradient(135deg, #fdf2fa, #f8f0ff);
            border-radius: var(--radius);
            padding: 16px 20px;
            text-align: center;
            min-width: 90px;
            flex: 1;
            border: 1px solid #f0d5f5;
        }
        .stat-card .stat-num {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--pink);
            line-height: 1;
        }
        .stat-card .stat-label {
            font-size: 0.75rem;
            color: var(--gray-500);
            margin-top: 4px;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        @media (min-width: 500px) { .movie-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
        @media (min-width: 768px) { .movie-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
        @media (min-width: 1100px) { .movie-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }
        .movie-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-100);
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: #f0d5f5;
        }
        .movie-card-img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            display: block;
            background: var(--gray-200);
            flex-shrink: 0;
        }
        .movie-card-body {
            padding: 8px 10px 12px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .movie-card-body h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-800);
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .movie-card-body .meta {
            font-size: 0.68rem;
            color: var(--gray-500);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            max-height: 2.8em;
        }
        .movie-card-body .type-tag {
            display: inline-block;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 10px;
            background: #fdf2fa;
            color: var(--pink);
            font-weight: 500;
            align-self: flex-start;
            white-space: nowrap;
        }
        .movie-card-body .site-tag {
            display: inline-block;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 10px;
            background: #f8f0ff;
            color: var(--purple);
            font-weight: 500;
            align-self: flex-start;
            margin-top: 2px;
        }
        .star-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        @media (min-width: 600px) { .star-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
        .star-card {
            text-align: center;
            background: var(--white);
            border-radius: var(--radius);
            padding: 14px;
            border: 1px solid var(--gray-100);
            transition: var(--transition);
        }
        .star-card:hover {
            box-shadow: var(--shadow-md);
            border-color: #e8d5f5;
        }
        .star-card img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            margin: 0 auto 10px;
            background: var(--gray-200);
            border: 3px solid #f8f0ff;
        }
        .star-card h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        .star-card .role {
            font-size: 0.7rem;
            color: var(--gray-500);
        }
        .plot-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        @media (min-width: 600px) { .plot-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
        @media (min-width: 900px) { .plot-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
        .plot-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 16px;
            border: 1px solid var(--gray-100);
            transition: var(--transition);
            border-left: 3px solid var(--purple);
        }
        .plot-card:hover {
            box-shadow: var(--shadow-md);
            border-left-color: var(--pink);
        }
        .plot-card h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-bottom: 6px;
        }
        .plot-card p {
            font-size: 0.8rem;
            color: var(--gray-600);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .detail-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media (min-width: 700px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1100px) { .detail-grid { grid-template-columns: repeat(4, 1fr); } }
        .detail-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-100);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .detail-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .detail-card img {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            display: block;
            background: var(--gray-200);
        }
        .detail-card-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .detail-card-body h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        .detail-card-body .info {
            font-size: 0.75rem;
            color: var(--gray-500);
            line-height: 1.5;
        }
        .detail-card-body .desc {
            font-size: 0.78rem;
            color: var(--gray-600);
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .sidebar-area {
            position: sticky;
            top: 84px;
            align-self: start;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        @media (max-width: 1023px) { .sidebar-area { position: static; } }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-100);
        }
        .sidebar-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--gray-800);
            margin-bottom: 14px;
            padding-left: 12px;
            border-left: 3px solid var(--blue);
        }
        .reading-stat {
            text-align: center;
            padding: 12px;
            background: linear-gradient(135deg, #f0faff, #f8f0ff);
            border-radius: var(--radius);
            margin-bottom: 12px;
        }
        .reading-stat .big-num {
            font-size: 2rem;
            font-weight: 700;
            color: var(--purple);
            line-height: 1;
        }
        .reading-stat .update-time {
            font-size: 0.7rem;
            color: var(--gray-400);
            margin-top: 4px;
        }
        .stat-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .stat-row .mini-stat {
            flex: 1;
            min-width: 70px;
            text-align: center;
            padding: 12px 8px;
            border-radius: var(--radius-sm);
            background: var(--gray-50);
        }
        .stat-row .mini-stat .num {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--pink);
            line-height: 1;
        }
        .stat-row .mini-stat .lbl {
            font-size: 0.7rem;
            color: var(--gray-500);
            margin-top: 3px;
        }
        .sidebar-star-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .sidebar-star-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .sidebar-star-list li:hover {
            background: var(--gray-50);
        }
        .sidebar-star-list img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            background: var(--gray-200);
            flex-shrink: 0;
        }
        .sidebar-star-list .name {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-800);
        }
        .sidebar-star-list .works {
            font-size: 0.7rem;
            color: var(--gray-500);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-item {
            padding: 14px 16px;
            border-radius: var(--radius);
            background: var(--gray-50);
            border-left: 3px solid var(--blue);
            transition: var(--transition);
        }
        .comment-item:hover {
            background: #f0faff;
            border-left-color: var(--pink);
        }
        .comment-item .comment-user {
            font-weight: 600;
            font-size: 0.82rem;
            color: var(--gray-700);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-item .comment-text {
            font-size: 0.8rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        .comment-item .comment-meta {
            font-size: 0.68rem;
            color: var(--gray-400);
            margin-top: 6px;
        }
        .app-download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        @media (min-width: 500px) { .app-download-grid { grid-template-columns: repeat(4, 1fr); } }
        .app-download-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 14px 10px;
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.8rem;
            transition: var(--transition);
            border: 1.5px solid var(--gray-200);
            background: var(--white);
            cursor: pointer;
            text-align: center;
        }
        .app-download-btn:hover {
            border-color: var(--pink);
            box-shadow: 0 0 0 4px rgba(235, 85, 191, 0.06);
            transform: translateY(-2px);
        }
        .app-download-btn .app-icon {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
        }
        .app-download-btn .app-label {
            font-weight: 600;
            font-size: 0.78rem;
        }
        .app-download-btn .app-ver {
            font-size: 0.65rem;
            color: var(--gray-400);
        }
        .weekly-ranking {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .weekly-ranking .rank-item {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1 1 180px;
            min-width: 150px;
            padding: 10px;
            border-radius: var(--radius);
            background: var(--gray-50);
            transition: var(--transition);
            cursor: pointer;
        }
        .weekly-ranking .rank-item:hover {
            background: #fdf2fa;
        }
        .weekly-ranking .rank-num {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pink);
            width: 32px;
            text-align: center;
            flex-shrink: 0;
        }
        .weekly-ranking .rank-num.top1 { color: #f59e0b; font-size: 1.8rem; }
        .weekly-ranking .rank-num.top2 { color: #94a3b8; font-size: 1.6rem; }
        .weekly-ranking .rank-num.top3 { color: #d97706; font-size: 1.5rem; }
        .weekly-ranking img {
            width: 50px;
            height: 70px;
            object-fit: cover;
            border-radius: 4px;
            background: var(--gray-200);
            flex-shrink: 0;
        }
        .weekly-ranking .rank-info h5 {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gray-800);
        }
        .weekly-ranking .rank-info span {
            font-size: 0.68rem;
            color: var(--gray-500);
        }
        .bottom-nav {
            width: 100%;
            background: var(--gray-800);
            color: #ccc;
            padding: clamp(20px, 4vw, 36px) clamp(12px, 3vw, 28px);
            margin-top: 40px;
            border-top: 3px solid var(--pink);
        }
        .bottom-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (min-width: 600px) { .bottom-nav-inner { grid-template-columns: repeat(3, 1fr); } }
        @media (min-width: 900px) { .bottom-nav-inner { grid-template-columns: repeat(4, 1fr); } }
        .bottom-nav-col h4 {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .bottom-nav-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .bottom-nav-col a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.78rem;
            transition: var(--transition);
        }
        .bottom-nav-col a:hover {
            color: var(--pink);
        }
        .bottom-copyright {
            text-align: center;
            color: #777;
            font-size: 0.7rem;
            padding-top: 16px;
            border-top: 1px solid #333;
            margin-top: 16px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding-left: clamp(12px, 3vw, 28px);
            padding-right: clamp(12px, 3vw, 28px);
        }
        .mobile-link-footer {
            display: inline-block;
            color: var(--blue);
            text-decoration: underline;
            font-weight: 500;
            margin-top: 8px;
            font-size: 0.78rem;
        }
        .mobile-link-footer:hover {
            color: var(--pink);
        }
        @media (max-width: 480px) {
            .top-nav-inner { height: 52px; gap: 8px; padding: 0 10px; }
            .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
        }