        :root {
            --bg-warm: #fdf8f2;
            --bg-card: #fffdf9;
            --bg-cream: #faf5ed;
            --text-deep: #2c221c;
            --text-mid: #5c4a38;
            --text-light: #7d6b56;
            --accent-amber: #c87d2c;
            --accent-deep: #9e5f1d;
            --accent-glow: #e8a44c;
            --link-teal: #2d7d6c;
            --link-teal-hover: #1e5c4e;
            --header-bg: #1f1a14;
            --header-text: #e8dcc8;
            --border-subtle: #e8ddd0;
            --shadow-card: 0 8px 22px -10px rgba(80, 40, 10, 0.10);
            --shadow-hover: 0 18px 32px -12px rgba(80, 40, 10, 0.18);
            --radius-lg: 1.8rem;
            --radius-md: 1.2rem;
            --radius-sm: 0.7rem;
            --font-stack: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --code-bg: #f9f5f0;
            --code-border: #e8ddd0;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-stack);
            background: var(--bg-warm);
            color: var(--text-deep);
            line-height: 1.65;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }
        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 1.8rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            background: var(--accent-amber);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 200;
            transition: top 0.3s;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Header */
        .site-header {
            background: var(--header-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 16px rgba(0, 0, 0, 0.25);
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.85rem 0;
            gap: 1rem;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }
        .logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, #e8a44c 0%, #c87d2c 60%, #a05c18 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 1.55rem;
            font-weight: 700;
            color: #e8dcc8;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo-badge {
            font-size: 0.65rem;
            background: rgba(232, 164, 76, 0.2);
            padding: 0.18rem 0.55rem;
            border-radius: 20px;
            color: #e8a44c;
            font-weight: 600;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #c4b89a;
            transition: color var(--transition-fast);
            font-size: 0.95rem;
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #e8a44c;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #e8a44c;
            border-radius: 1px;
        }

        /* Page Hero */
        .page-hero {
            padding: 3.5rem 0 2rem;
            text-align: center;
            background: var(--bg-cream);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 480px;
            height: 480px;
            background: radial-gradient(circle at 50% 30%, rgba(200, 125, 44, 0.08) 0%, transparent 68%),
                radial-gradient(circle at 30% 60%, rgba(45, 125, 108, 0.05) 0%, transparent 58%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .page-hero>* {
            position: relative;
            z-index: 1;
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(125deg, #3d2814 0%, #7a4e24 45%, #2d5c4e 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.7rem;
            letter-spacing: -0.02em;
        }
        .page-hero .hero-sub {
            font-size: 1.1rem;
            color: #5c4a38;
            max-width: 620px;
            margin: 0 auto 0.4rem;
            font-weight: 460;
        }
        .page-hero .hero-note {
            font-size: 0.9rem;
            color: #7d6b56;
            max-width: 580px;
            margin: 0 auto 1.2rem;
        }

        /* Scene Grid */
        .scene-section {
            padding: 3rem 0 1rem;
        }
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            margin-bottom: 2rem;
        }
        .scene-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2rem 1.8rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            scroll-margin-top: 100px;
            display: flex;
            flex-direction: column;
        }
        .scene-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: #dcc8a8;
            background: #fffdf7;
            transform: translateY(-5px);
        }
        .scene-icon {
            font-size: 2.6rem;
            margin-bottom: 0.8rem;
        }
        .scene-card h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #3d2814;
            margin-bottom: 0.4rem;
        }
        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .scene-tags span {
            background: #fdf2e3;
            color: #7a4e24;
            padding: 0.25rem 0.65rem;
            border-radius: 14px;
            font-size: 0.76rem;
            font-weight: 500;
            border: 1px solid #f0dbb8;
            white-space: nowrap;
        }
        .scene-tags span.highlight {
            background: #fce4c4;
            color: #5c3410;
            font-weight: 600;
            border-color: #e8a44c;
        }
        .scene-card p {
            color: #5c4a38;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }
        .scene-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: auto;
        }
        .btn-scene {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 1.2rem;
            border-radius: 22px;
            font-weight: 500;
            font-size: 0.84rem;
            text-decoration: none;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            border: 1.5px solid transparent;
        }
        .btn-scene.primary {
            background: var(--accent-amber);
            color: #fff;
            border-color: var(--accent-amber);
        }
        .btn-scene.primary:hover {
            background: var(--accent-deep);
            border-color: var(--accent-deep);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(160, 92, 24, 0.3);
        }
        .btn-scene.secondary {
            background: transparent;
            color: #5c3a1e;
            border-color: #c8a278;
        }
        .btn-scene.secondary:hover {
            background: rgba(200, 125, 44, 0.08);
            border-color: var(--accent-amber);
            color: #3d2814;
            transform: translateY(-2px);
        }
        .btn-scene.link {
            background: transparent;
            color: #8b7358;
            border-color: transparent;
            padding: 0.4rem 0.2rem;
            font-size: 0.8rem;
            gap: 0.2rem;
        }
        .btn-scene.link:hover {
            color: var(--accent-amber);
            text-decoration: underline;
        }

        /* Cross-links section */
        .cross-links {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-card);
            margin: 2rem 0;
            text-align: center;
        }
        .cross-links h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #3d2814;
            margin-bottom: 1rem;
        }
        .cross-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
        }
        .cross-links-grid a {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: #fdf4e5;
            color: #5c3a1e;
            padding: 0.55rem 1.3rem;
            border-radius: 22px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.88rem;
            transition: all var(--transition-fast);
            border: 1px solid #f0dbb8;
        }
        .cross-links-grid a:hover {
            background: #fce4c4;
            border-color: #e8a44c;
            color: #3d2814;
            transform: translateY(-2px);
        }

        /* Footer */
        .site-footer {
            background: #1f1a14;
            color: #c4b89a;
            padding: 2.5rem 0;
            margin-top: 2rem;
            border-top: 1px solid #3d3224;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }
        .copyright {
            font-size: 0.82rem;
            color: #9e8d74;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .footer-links a {
            color: #c4b89a;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .footer-links a:hover {
            color: #e8a44c;
        }

        @media (max-width: 720px) {
            .container {
                padding: 0 1.1rem;
            }
            .navbar {
                flex-direction: column;
                gap: 0.6rem;
            }
            .nav-links {
                gap: 0.9rem;
                font-size: 0.85rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .scene-card {
                padding: 1.5rem 1.2rem;
            }
            .scene-card h2 {
                font-size: 1.2rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
                gap: 0.8rem;
            }
        }