    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        body {
            background: linear-gradient(145deg, #0b1120 0%, #1a2635 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1.5rem;
        }

        /* 主评价卡片 —— 独立页面专属风格 */
        .review-standalone {
            max-width: 800px;
            width: 100%;
            background: #152032;
            border-radius: 3.5rem;
            padding: 2.8rem 2.8rem 3rem 2.8rem;
            box-shadow: 0 40px 70px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(251, 191, 36, 0.5), 0 0 30px #fbbf2440;
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: #e0e7ff;
            transition: all 0.3s;
            backdrop-filter: blur(2px);
        }

        /* 电影标题 */
        .movie-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            background: linear-gradient(120deg, #fbbf24, #f59e0b, #e11d48);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px #fbbf2420;
        }

        /* 年份 + 评分 行 */
        .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: center;
            margin: 1.2rem 0 1.8rem 0;
            border-bottom: 2px dashed #2d4055;
            padding-bottom: 1.5rem;
        }

        .year-badge {
            font-size: 1.3rem;
            background: #1f3147;
            padding: 0.3rem 1.4rem;
            border-radius: 60px;
            border: 1px solid #4b6589;
            color: #bdd3ff;
            font-weight: 500;
        }

        .rating-badge {
            background: rgba(251, 191, 36, 0.12);
            border: 1.5px solid #fbbf24;
            border-radius: 60px;
            padding: 0.3rem 1.6rem;
            font-weight: 700;
            font-size: 1.4rem;
            color: #fcd34d;
            box-shadow: 0 0 15px #fbbf2430;
            backdrop-filter: blur(4px);
        }

        /* 海报占位 / 荣誉信息 */
        .poster-highlight {
            display: flex;
            gap: 2rem;
            align-items: center;
            background: #0f1a29;
            border-radius: 2.5rem;
            padding: 1.2rem 2rem;
            margin: 2rem 0 2.2rem 0;
            border: 1px solid #3d506e;
        }

        .mini-poster {
            width: 100px;
            height: 130px;
            background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
            border-radius: 20px;
            box-shadow: 0 10px 25px black;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 0.6rem;
            color: #fbbf24;
            font-weight: 600;
            font-size: 1rem;
            border: 1px solid #fbbf2440;
            background-size: cover;
            background-position: center;
            background-image: radial-gradient(circle at 30% 30%, #f0e68c30, #1e2f3f);
        }

        .mini-poster span {
            background: rgba(0,0,0,0.6);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            backdrop-filter: blur(2px);
            border: 1px solid #fbbf24;
        }

        .honor-list {
            flex: 1;
            color: #b0c7e7;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .honor-list div {
            margin: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .honor-list i {
            color: #fbbf24;
            font-style: normal;
            font-size: 1.3rem;
        }

        /* 剧情简介 */
        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #fbbf24;
            margin: 2rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-left: 6px solid #fbbf24;
            padding-left: 1rem;
        }

        .description {
            background: #0c1624;
            padding: 2rem 2.2rem;
            border-radius: 2.5rem;
            font-size: 1.2rem;
            line-height: 1.7;
            border-left: 5px solid #fbbf24;
            margin-bottom: 2rem;
            box-shadow: inset 0 0 20px #00000050;
            color: #d1ddeb;
            font-style: italic;
        }

        /* 用户热评卡片 */
        .user-comment-card {
            background: #1e2c40;
            border-radius: 2rem;
            padding: 1.5rem 2rem;
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin: 2rem 0 1.8rem 0;
            border: 1px solid #fbbf2440;
            box-shadow: 0 10px 20px #00000060;
        }

        .avatar {
            width: 70px;
            height: 70px;
            border-radius: 70px;
            background: linear-gradient(135deg, #fbbf24, #e11d48);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 0 0 3px #fbbf24;
        }

        .comment-content {
            flex: 1;
        }

        .comment-content .username {
            font-weight: 600;
            color: #fbbf24;
            margin-bottom: 0.25rem;
            font-size: 1.2rem;
        }

        .comment-content .comment-text {
            font-size: 1.2rem;
            line-height: 1.5;
            color: #d2defc;
            font-style: italic;
        }

        .comment-meta {
            font-size: 0.9rem;
            color: #7f8fa3;
            margin-top: 0.5rem;
        }

        /* 附加数据 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0 2.5rem 0;
        }

        .stat-item {
            background: #1b263b;
            border-radius: 1.8rem;
            padding: 1.1rem 0.5rem;
            text-align: center;
            border: 1px solid #3b4f6b;
            box-shadow: 0 5px 0 #0b111e;
        }

        .stat-number {
            font-size: 1.7rem;
            font-weight: 700;
            color: #fbbf24;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #a6b9d9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 返回主页链接 */
        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: transparent;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-weight: 600;
            font-size: 1.2rem;
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.2s;
            margin-top: 1.5rem;
            box-shadow: 0 8px 0 #0e1a1f;
        }

        .back-home:hover {
            background: #fbbf24;
            color: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 10px 0 #0b1520, 0 0 20px #fbbf24;
        }

        /* 微响应 */
        @media (max-width: 550px) {
            .review-standalone { padding: 1.8rem; }
            .movie-title { font-size: 2.4rem; }
            .meta-bar { gap: 1rem; }
            .poster-highlight { flex-direction: column; align-items: flex-start; }
            .user-comment-card { flex-direction: column; align-items: flex-start; }
            .stats-grid { grid-template-columns: 1fr; }
        }
