:root {
            --gold: #ffbd39;
            --rose: #e61c5d;
            --deep-purple: #930077;
            --dark-blue: #3a0088;
            --bg-dark: #0a0a14;
            --bg-card: #12122a;
            --bg-section: #0d0d22;
            --text-primary: #f0f0f5;
            --text-secondary: #b8b8cc;
            --text-muted: #8888a0;
            --border-subtle: rgba(255, 255, 255, 0.06);
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
            --shadow-hover: 0 8px 36px rgba(230, 28, 93, 0.25);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1320px;
            --nav-height: 64px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .top-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: rgba(10, 10, 24, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-subtle);
            min-height: var(--nav-height);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        .top-nav.scrolled {
            box-shadow: 0 2px 20px rgba(58, 0, 136, 0.35);
            background: rgba(10, 10, 24, 0.97);
        }
        .nav-inner {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .nav-brand h1 {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--rose));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            white-space: nowrap;
            margin: 0;
            line-height: 1.2;
        }
        .nav-brand .logo-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--rose);
            box-shadow: 0 0 12px var(--rose);
            animation: pulse-dot 2s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                box-shadow: 0 0 8px var(--rose);
            }
            50% {
                box-shadow: 0 0 22px var(--rose), 0 0 40px rgba(230, 28, 93, 0.5);
            }
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-links a {
            display: inline-block;
            padding: 8px 14px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a:focus {
            color: #fff;
            background: rgba(255, 189, 57, 0.1);
        }
        .nav-links a.active-link {
            color: var(--gold);
            background: rgba(255, 189, 57, 0.12);
            font-weight: 600;
        }
        .nav-user {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn-login {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 20px;
            background: linear-gradient(135deg, var(--rose), var(--deep-purple));
            color: #fff;
            border: none;
            border-radius: 24px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: var(--transition);
            text-decoration: none;
            white-space: nowrap;
            box-shadow: 0 4px 16px rgba(230, 28, 93, 0.3);
        }
        .btn-login:hover {
            box-shadow: 0 6px 24px rgba(230, 28, 93, 0.5);
            transform: translateY(-2px);
        }
        .user-avatar-placeholder {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), var(--rose));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            cursor: pointer;
            flex-shrink: 0;
        }
        .main-layout {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 28px;
            padding: 24px 20px 40px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .banner-carousel {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: #0d0d22;
            box-shadow: var(--shadow-card);
            aspect-ratio: 16 / 7;
            min-height: 280px;
            max-height: 420px;
        }
        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform;
        }
        .carousel-slide {
            flex: 0 0 100%;
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .carousel-slide .slide-text {
            flex: 1;
            padding: 32px 40px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }
        .slide-badge {
            display: inline-block;
            padding: 5px 14px;
            background: var(--rose);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 20px;
            letter-spacing: 1px;
            width: fit-content;
        }
        .slide-title {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }
        .slide-desc {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 420px;
            line-height: 1.5;
        }
        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            background: var(--gold);
            color: #1a1a2e;
            border: none;
            border-radius: 24px;
            font-weight: 700;
            cursor: pointer;
            font-size: 0.95rem;
            text-decoration: none;
            width: fit-content;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(255, 189, 57, 0.35);
        }
        .slide-btn:hover {
            box-shadow: 0 6px 24px rgba(255, 189, 57, 0.55);
            transform: translateY(-2px);
        }
        .carousel-slide .slide-img-wrap {
            flex: 0 0 44%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .carousel-slide .slide-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .slide-img-wrap::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(to right, #0d0d22 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-weight: 700;
        }
        .carousel-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .carousel-btn.prev {
            left: 16px;
        }
        .carousel-btn.next {
            right: 16px;
        }
        .carousel-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .carousel-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
        }
        .carousel-dots span.active {
            background: var(--gold);
            box-shadow: 0 0 10px var(--gold);
            width: 28px;
            border-radius: 12px;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
        }
        .section-title::before {
            content: '';
            width: 4px;
            height: 26px;
            background: linear-gradient(180deg, var(--gold), var(--rose));
            border-radius: 4px;
            flex-shrink: 0;
        }
        .section-tag {
            font-size: 0.8rem;
            color: var(--gold);
            background: rgba(255, 189, 57, 0.1);
            padding: 4px 12px;
            border-radius: 14px;
            font-weight: 500;
        }
        .movie-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }
        .movie-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            cursor: pointer;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
        }
        .movie-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(230, 28, 93, 0.4);
        }
        .movie-card .card-img {
            width: 100%;
            aspect-ratio: 2/3;
            overflow: hidden;
            position: relative;
            background: #1a1a35;
        }
        .movie-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .movie-card:hover .card-img img {
            transform: scale(1.06);
        }
        .card-img .type-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
            letter-spacing: 0.5px;
        }
        .type-movie {
            background: var(--rose);
            color: #fff;
        }
        .type-tv {
            background: var(--deep-purple);
            color: #fff;
        }
        .card-img .rating-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--gold);
            padding: 4px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 2;
        }
        .movie-card .card-info {
            padding: 10px 12px 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
        }
        .card-info .card-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: #fff;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .card-info .card-meta {
            font-size: 0.7rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .card-info .card-meta span {
            white-space: nowrap;
        }
        .card-info .card-meta .dot-sep {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--text-muted);
            flex-shrink: 0;
        }
        .star-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .star-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            cursor: pointer;
        }
        .star-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .star-card .star-img {
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #1a1a35;
        }
        .star-card .star-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .star-card:hover .star-img img {
            transform: scale(1.05);
        }
        .star-card .star-name {
            font-weight: 700;
            font-size: 1rem;
            padding: 12px 8px 4px;
            color: #fff;
        }
        .star-card .star-role {
            font-size: 0.78rem;
            color: var(--text-muted);
            padding: 0 8px 12px;
        }
        .story-grid,
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .story-card,
        .detail-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 20px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .story-card:hover,
        .detail-card:hover {
            border-color: rgba(255, 189, 57, 0.3);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }
        .story-card .story-num,
        .detail-card .detail-num {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--gold), var(--rose));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .story-card h4,
        .detail-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }
        .story-card p,
        .detail-card p {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .detail-card .detail-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .detail-tags span {
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(147, 0, 119, 0.2);
            color: #d4a0ff;
            font-weight: 500;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
        }
        .sidebar-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card h3::before {
            content: '';
            width: 3px;
            height: 18px;
            background: var(--gold);
            border-radius: 3px;
            flex-shrink: 0;
        }
        .stat-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .stat-item {
            flex: 1;
            min-width: 80px;
            background: rgba(255, 189, 57, 0.06);
            border-radius: var(--radius-sm);
            padding: 14px;
            text-align: center;
        }
        .stat-item .stat-val {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--rose));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .stat-item .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .update-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-align: right;
            margin-top: 6px;
        }
        .rank-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .rank-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
            background: rgba(255, 255, 255, 0.02);
        }
        .rank-list li:hover {
            background: rgba(255, 189, 57, 0.08);
        }
        .rank-num {
            font-weight: 900;
            font-size: 1.1rem;
            width: 28px;
            text-align: center;
            flex-shrink: 0;
        }
        .rank-num.top1 {
            color: var(--gold);
        }
        .rank-num.top2 {
            color: #c0c0c0;
        }
        .rank-num.top3 {
            color: #cd7f32;
        }
        .rank-num {
            color: var(--text-muted);
        }
        .rank-info {
            flex: 1;
            min-width: 0;
        }
        .rank-info .rn {
            font-weight: 600;
            font-size: 0.85rem;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .rank-info .rm {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .comment-item {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 16px 18px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
        }
        .comment-item:hover {
            border-color: rgba(255, 189, 57, 0.25);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        .comment-user {
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
        }
        .comment-time {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: auto;
        }
        .comment-body {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .app-download-section {
            background: linear-gradient(135deg, rgba(58, 0, 136, 0.4) 0%, rgba(147, 0, 119, 0.3) 50%, rgba(10, 10, 24, 0.9) 100%);
            border-radius: var(--radius-xl);
            padding: 32px 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }
        .app-download-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .app-download-text p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            max-width: 400px;
        }
        .app-download-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .app-download-btns a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            border-radius: 24px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
            white-space: nowrap;
        }
        .app-download-btns a:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
            box-shadow: 0 4px 16px rgba(255, 189, 57, 0.25);
            transform: translateY(-2px);
        }
        .app-download-btns .btn-android:hover {
            border-color: #3ddc84;
            box-shadow: 0 4px 16px rgba(61, 220, 132, 0.3);
        }
        .app-download-btns .btn-ios:hover {
            border-color: #000;
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
        }
        .app-download-btns .btn-pc:hover {
            border-color: #52616b;
            box-shadow: 0 4px 16px rgba(82, 97, 107, 0.3);
        }
        .app-icon {
            flex-shrink: 0;
        }
        .bottom-nav {
            width: 100%;
            background: #08081a;
            border-top: 1px solid var(--border-subtle);
            padding: 28px 20px 16px;
            text-align: center;
        }
        .bottom-nav-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .bottom-nav .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            list-style: none;
            justify-content: center;
        }
        .bottom-nav .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .bottom-nav .footer-links a:hover {
            color: var(--gold);
        }
        .bottom-nav .copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .bottom-nav .mobile-link {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 189, 57, 0.1);
            color: var(--gold);
            border-radius: 16px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }
        .bottom-nav .mobile-link:hover {
            background: rgba(255, 189, 57, 0.2);
        }
        .platform-intro {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 28px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            line-height: 1.7;
        }
        .platform-intro h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
        }
        .platform-intro p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        @media (max-width: 1200px) {
            .movie-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .main-layout {
                grid-template-columns: 1fr 300px;
                gap: 20px;
            }
            .carousel-slide .slide-title {
                font-size: 1.5rem;
            }
            .carousel-slide .slide-text {
                padding: 20px 24px;
            }
        }
        @media (max-width: 1024px) {
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .story-grid,
            .detail-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .main-layout {
                grid-template-columns: 1fr 260px;
                gap: 16px;
            }
            .carousel-slide .slide-title {
                font-size: 1.3rem;
            }
            .carousel-slide .slide-desc {
                font-size: 0.8rem;
                max-width: 280px;
            }
        }
        @media (max-width: 768px) {
            .main-layout {
                grid-template-columns: 1fr;
                padding: 16px 12px 24px;
            }
            .sidebar {
                order: 10;
            }
            .movie-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .story-grid,
            .detail-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .banner-carousel {
                aspect-ratio: 16/9;
                min-height: 200px;
                max-height: 280px;
            }
            .carousel-slide {
                flex-direction: column;
            }
            .carousel-slide .slide-text {
                padding: 16px;
                order: 2;
                flex: auto;
            }
            .carousel-slide .slide-img-wrap {
                flex: 0 0 55%;
                width: 100%;
                order: 1;
            }
            .slide-img-wrap::after {
                width: 100%;
                height: 50%;
                top: auto;
                bottom: 0;
                background: linear-gradient(to top, #0d0d22 0%, transparent 100%);
            }
            .carousel-slide .slide-title {
                font-size: 1.1rem;
            }
            .carousel-slide .slide-desc {
                font-size: 0.75rem;
                max-width: 100%;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 6px 10px;
                font-size: 0.75rem;
                border-radius: 14px;
            }
            .nav-brand h1 {
                font-size: 1.2rem;
            }
            .btn-login {
                padding: 7px 14px;
                font-size: 0.8rem;
            }
            .app-download-section {
                flex-direction: column;
                text-align: center;
                padding: 20px 16px;
            }
            .app-download-btns {
                justify-content: center;
            }
            .card-info .card-title {
                font-size: 0.78rem;
            }
            .card-info .card-meta {
                font-size: 0.65rem;
            }
            .section-title {
                font-size: 1.15rem;
            }
            .carousel-btn {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
            }
            .carousel-btn.prev {
                left: 6px;
            }
            .carousel-btn.next {
                right: 6px;
            }
        }
        @media (max-width: 480px) {
            .movie-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .star-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .story-grid,
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .banner-carousel {
                aspect-ratio: 4/3;
                min-height: 180px;
                max-height: 240px;
            }
            .carousel-slide .slide-title {
                font-size: 1rem;
            }
            .nav-inner {
                padding: 0 8px;
                gap: 8px;
            }
            .nav-links a {
                padding: 5px 8px;
                font-size: 0.7rem;
            }
            .bottom-nav-inner {
                flex-direction: column;
                text-align: center;
            }
            .stat-row {
                flex-direction: column;
            }
        }