:root {
            /* Gemini推荐配色：智潮灵感 (Smart & Trendy Inspiration) */
            --primary: #4834D4;  /* 深邃智慧蓝 */
            --primary-light: #5F4FE0;
            --accent: #FF9F43;  /* 温暖晨光橙 */
            --accent-light: #FFE5D0;
            --accent-secondary: #00D2D3;  /* 全息呼吸青 */
            --accent-tertiary: #A29BFE;  /* 数字薰衣草 */

            /* 中性色 */
            --gray-50: #FAFBFC;
            --gray-100: #F5F7FA;
            --gray-200: #E4E7EB;
            --gray-300: #CBD2D9;
            --gray-400: #9AA5B1;
            --gray-500: #7B8794;
            --gray-600: #616E7C;
            --gray-700: #52606D;
            --gray-800: #3E4C59;
            --gray-900: #323F4B;

            /* 评分卡片专用色 */
            --ctrip: #0086F6;
            --meituan: #FFD100;
            --douyin: #000000;
            --fliggy: #FF6A00;

            /* 间距系统 */
            --space-1: 4px;
            --space-2: 8px;
            --space-3: 12px;
            --space-4: 16px;
            --space-5: 20px;
            --space-6: 24px;
            --space-8: 32px;
            --space-10: 40px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: linear-gradient(135deg, #4834D4 0%, #00D2D3 100%);
            min-height: 100vh;
        }

        /* 多语言切换 */
        .lang-switcher {
            position: absolute;
            top: var(--space-4);
            right: var(--space-4);
            z-index: 100;
            display: flex;
            gap: var(--space-2);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 6px 10px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .lang-switcher a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 13px;
            padding: 4px 10px;
            border-radius: 16px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .lang-switcher a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        .lang-switcher a.active {
            background: var(--accent);
            color: #fff;
        }

        /* 房型卡片 */
        .room-card {
            margin-bottom: 16px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            border-radius: 16px;
            border-left: 4px solid var(--accent);
            transition: all 0.3s ease;
        }
        .room-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        .room-card-title {
            font-size: 17px;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .room-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 16px;
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.8;
        }
        .room-card-grid span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .room-card-tags {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .room-card-tag {
            font-size: 12px;
            padding: 4px 10px;
            background: var(--gray-100);
            border-radius: 12px;
            color: var(--gray-700);
        }
        .room-count-bar {
            margin-top: 16px;
            font-size: 13px;
            color: var(--gray-500);
            text-align: center;
            padding: 10px;
            background: var(--gray-50);
            border-radius: 8px;
        }

        /* 底部认证栏 */
        .footer-trust {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
            backdrop-filter: blur(10px);
            padding: var(--space-6) var(--space-5);
            text-align: center;
            margin-top: var(--space-10);
            border-top: 3px solid transparent;
            background-clip: padding-box;
            position: relative;
        }

        .footer-trust::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
        }

        .footer-trust-text {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.8;
            font-weight: 500;
        }

        /* 主容器 - 默认宽屏布局 */
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: var(--space-5) 40px;
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: var(--space-5);
            align-items: start;
        }

        /* 左侧：酒店基础信息 */
        .hotel-info {
            background: #fff;
            border-radius: 16px;
            padding: var(--space-6);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
            position: relative;
            overflow: hidden;
        }

        /* 右侧容器 */
        .right-sidebar {
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
            position: sticky;
            top: var(--space-4);
            align-self: start;
        }

        .hotel-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
        }

        /* 图片轮播区 */
        .hotel-gallery {
            margin-bottom: var(--space-6);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            height: 300px;
        }

        .gallery-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .gallery-item {
            min-width: 100%;
            height: 100%;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-dot.active {
            background: #fff;
            width: 30px;
            border-radius: 5px;
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .gallery-arrow:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .gallery-arrow.prev {
            left: 20px;
        }

        .gallery-arrow.next {
            right: 20px;
        }

        .hotel-info h1 {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: var(--space-2);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel-subtitle {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: var(--space-4);
        }

        .star-rating {
            font-size: 20px;
            color: var(--accent);
            margin-bottom: var(--space-6);
            letter-spacing: 2px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: var(--space-4);
            font-size: 15px;
            color: var(--gray-700);
        }

        .info-icon {
            margin-right: var(--space-2);
            font-size: 18px;
        }

        .info-content {
            flex: 1;
        }

        .room-types {
            margin-top: var(--space-6);
            padding-top: var(--space-6);
            border-top: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(90deg, var(--accent), var(--accent-secondary)) border-box;
        }

        .room-types h3 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .room-list {
            color: var(--gray-600);
            font-size: 14px;
        }

        /* 核心设施区 */
        .facilities-section {
            margin-top: var(--space-6);
            padding-top: var(--space-6);
            border-top: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(90deg, var(--accent-secondary), var(--accent-tertiary)) border-box;
        }

        .facilities-section h3 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-3);
        }

        .facility-item {
            display: flex;
            align-items: center;
            padding: var(--space-3);
            background: linear-gradient(135deg, #fff 0%, var(--gray-50) 100%);
            border-radius: 12px;
            font-size: 14px;
            color: var(--gray-700);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .facility-item:hover {
            background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
            transform: translateX(8px) scale(1.02);
            border-color: var(--accent-secondary);
            box-shadow: 0 4px 12px rgba(0, 210, 211, 0.3);
        }

        .facility-icon {
            margin-right: var(--space-2);
            font-size: 20px;
        }

        /* Hero 大图区 */
        .hero-section {
            position: relative;
            width: 100%;
            height: 480px;
            overflow: hidden;
            background: var(--primary);
        }

        .hero-gallery {
            display: flex;
            height: 100%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(44, 52, 80, 0.85));
            padding: var(--space-8) var(--space-8) var(--space-6);
            color: #fff;
        }

        .hero-hotel-name {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: var(--space-1);
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .hero-hotel-sub {
            font-size: 16px;
            color: rgba(255,255,255,0.85);
            margin-bottom: var(--space-3);
        }

        .hero-score-bar {
            display: flex;
            align-items: center;
            gap: var(--space-4);
        }

        .hero-overall-score {
            background: var(--accent);
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 8px;
        }

        .hero-score-label {
            font-size: 14px;
            color: rgba(255,255,255,0.9);
        }

        .hero-nav {
            position: absolute;
            bottom: var(--space-4);
            right: var(--space-4);
            display: flex;
            gap: var(--space-2);
        }

        .hero-dot {
            width: 8px;
            height: 8px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-dot.active {
            background: #fff;
            width: 24px;
            border-radius: 4px;
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            color: #fff;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .hero-arrow:hover { background: rgba(255,255,255,0.4); }
        .hero-arrow.prev { left: var(--space-4); }
        .hero-arrow.next { right: var(--space-4); }

        /* 评分维度条 */
        .score-dimensions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-3) var(--space-6);
            margin-top: var(--space-4);
        }

        .score-dim-item {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            font-size: 13px;
        }

        .score-dim-label {
            color: var(--gray-600);
            min-width: 40px;
        }

        .score-dim-bar {
            flex: 1;
            height: 6px;
            background: var(--gray-200);
            border-radius: 3px;
            overflow: hidden;
        }

        .score-dim-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent-secondary) 100%);
            border-radius: 3px;
        }

        .score-dim-value {
            color: var(--primary);
            font-weight: 600;
            min-width: 28px;
            text-align: right;
        }

        /* 地图/交通区 */
        .transport-section {
            background: #fff;
            border-radius: 12px;
            padding: var(--space-6);
            box-shadow: 0 2px 12px rgba(44, 52, 80, 0.06);
            margin-top: var(--space-6);
        }

        .transport-section h3 {
            font-size: 16px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .transport-item {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-3) 0;
            border-bottom: 1px solid var(--gray-100);
            font-size: 14px;
            color: var(--gray-700);
        }

        .transport-item:last-child { border-bottom: none; }

        .transport-icon {
            font-size: 20px;
            width: 32px;
            text-align: center;
        }

        /* FAQ 折叠区 */
        .faq-section {
            background: #fff;
            border-radius: 12px;
            padding: var(--space-6);
            box-shadow: 0 2px 12px rgba(44, 52, 80, 0.06);
            margin-top: var(--space-6);
        }

        .faq-section h3 {
            font-size: 16px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-100);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-4) 0;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-800);
            transition: color 0.2s;
        }

        .faq-question:hover { color: var(--primary); }

        .faq-toggle {
            font-size: 20px;
            font-weight: 300;
            color: var(--gray-400);
            transition: transform 0.3s ease;
            min-width: 20px;
            text-align: center;
        }

        .faq-answer {
            font-size: 13px;
            color: var(--gray-600);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-bottom: var(--space-4);
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        /* 现有样式补丁 */
        .rating-cards {
            background: #fff;
            border-radius: 12px;
            padding: var(--space-6);
            box-shadow: 0 2px 12px rgba(44, 52, 80, 0.06);
        }

        .rating-cards h2 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3);
        }

        .rating-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-tertiary) 100%);
            border: none;
            border-radius: 16px;
            padding: var(--space-5);
            text-align: center;
            box-shadow: 0 8px 24px rgba(72, 52, 212, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .rating-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 16px 40px rgba(72, 52, 212, 0.4);
        }

        .platform-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-2);
            color: #fff;
        }

        .rating-score {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            margin-bottom: var(--space-1);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .rating-star {
            color: var(--accent);
            font-size: 18px;
        }

        .rating-count {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 标签 */
        .tags-section {
            background: #fff;
            border-radius: 12px;
            padding: var(--space-6);
            box-shadow: 0 2px 12px rgba(44, 52, 80, 0.06);
        }

        .tags-section h2 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .tags-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-2);
        }

        .tag-item {
            background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
            color: #fff;
            padding: 10px 18px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 210, 211, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tag-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            display: flex;
            flex-direction: column;
            gap: var(--space-6);
        }

        /* 多平台评分卡片 */
        .rating-cards {
            background: #fff;
            border-radius: 20px;
            padding: var(--space-6);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .rating-cards h2 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3);
        }

        .rating-card {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-tertiary) 100%);
            border: none;
            border-radius: 16px;
            padding: var(--space-5);
            text-align: center;
            box-shadow: 0 8px 24px rgba(72, 52, 212, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .rating-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .rating-card:hover::before {
            opacity: 1;
        }

        .rating-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 16px 40px rgba(72, 52, 212, 0.4);
        }

        .platform-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: var(--space-2);
            color: #fff;
        }

        .rating-score {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            margin-bottom: var(--space-1);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .rating-star {
            color: var(--accent);
            font-size: 18px;
        }

        .rating-count {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* AI 核心标签区 */
        .tags-section {
            background: #fff;
            border-radius: 20px;
            padding: var(--space-6);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .tags-section h2 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: var(--primary);
            font-weight: 600;
        }

        .tags-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-2);
        }

        .tag-item {
            background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
            color: #fff;
            padding: 10px 18px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 210, 211, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tag-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .tag-item:hover::before {
            width: 200px;
            height: 200px;
        }

        .tag-item:hover {
            transform: scale(1.1) rotate(-2deg);
            box-shadow: 0 8px 20px rgba(0, 210, 211, 0.4);
        }

        /* 滚动好评区 */
        .reviews-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-secondary) 100%);
            border-radius: 20px;
            padding: var(--space-6);
            height: 400px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(72, 52, 212, 0.3);
        }

        .reviews-section h2 {
            font-size: 18px;
            margin-bottom: var(--space-4);
            color: #fff;
            font-weight: 600;
        }

        .reviews-container {
            height: calc(100% - 40px);
            overflow: hidden;
            position: relative;
        }

        .reviews-scroll {
            animation: scroll-up 30s linear infinite;
        }

        .reviews-scroll:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-up {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        .review-item {
            margin-bottom: var(--space-5);
            padding: var(--space-4);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: var(--space-2);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
        }

        .review-platform {
            margin-right: var(--space-2);
            font-weight: 600;
            color: #fff;
        }

        .review-date {
            color: rgba(255, 255, 255, 0.7);
        }

        .review-content {
            font-size: 14px;
            color: #fff;
            line-height: 1.6;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                padding: var(--space-4) var(--space-3);
                gap: var(--space-4);
            }

            .hotel-info {
                padding: var(--space-4);
            }

            .hotel-info h1 {
                font-size: 22px;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr 1fr;
            }

            .reviews-section {
                height: 280px;
            }

            .hero-section {
                height: 260px;
            }

            .hero-hotel-name { font-size: 22px; }
        }

        /* 笔记本宽屏（1280px~1600px）优化 */
        @media (min-width: 1024px) {
            .container {
                max-width: 100%;
                padding: var(--space-5) 40px;
                grid-template-columns: 1fr 360px;
                gap: var(--space-5);
                align-items: start;
            }
            .right-sidebar {
                display: flex;
                flex-direction: column;
                gap: var(--space-4);
                position: sticky;
                top: var(--space-4);
                align-self: start;
            }
            .hero-section { height: 460px; }
            .hero-hotel-name { font-size: 30px; }
            .rating-cards,
            .tags-section,
            .reviews-section {
                border-radius: 12px;
                box-shadow: 0 4px 16px rgba(44, 52, 80, 0.08);
            }
            .rating-cards { padding: 16px; }
            .tags-section { padding: 16px; }
            .rating-cards h2,
            .tags-section h2,
            .reviews-section h2 { font-size: 15px; margin-bottom: 12px; }
            .rating-score { font-size: 26px; }
            .tag-item { padding: 6px 12px; font-size: 12px; }
        }

        @media (min-width: 1440px) {
            .container {
                max-width: 1440px;
                padding: var(--space-5) 60px;
                grid-template-columns: 1fr 400px;
                gap: var(--space-6);
            }
            .hero-section { height: 500px; }
        }

        @media (min-width: 1600px) {
            .container {
                max-width: 1560px;
                padding: var(--space-6) 80px;
                grid-template-columns: 1fr 420px;
            }
            .hero-section { height: 540px; }
        }
