        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f7f4;
            color: #1e1e2a;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8b6900;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        :root {
            --primary-dark: #0c0e1a;
            --primary-mid: #1a1d33;
            --gold: #d4a017;
            --gold-light: #f0c75e;
            --gold-dark: #b8860b;
            --cream: #faf8f0;
            --text-dark: #1e1e2a;
            --text-light: #f0ede4;
            --accent-red: #c0392b;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --max-width: 1200px;
            --header-height: 72px;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-mid);
            border-left: 5px solid var(--gold);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        .section-subtitle {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        .text-gold {
            color: var(--gold-dark);
        }
        .text-small {
            font-size: 0.9rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .gap-2 {
            gap: 2rem;
        }
        .site-header {
            background: var(--primary-dark);
            color: var(--text-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            display: flex;
            align-items: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: var(--gold-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: opacity 0.25s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--gold);
        }
        .my-logo span {
            font-size: 0.75rem;
            font-weight: 400;
            color: #aaa;
            letter-spacing: 1px;
            display: block;
            line-height: 1.2;
        }
        .logo-text-group {
            display: flex;
            flex-direction: column;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.12);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        .primary-nav a {
            color: #ddd;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            font-size: 0.92rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(212, 160, 23, 0.15);
            color: var(--gold-light);
            text-decoration: none;
        }
        .primary-nav a.active {
            color: var(--gold);
            background: rgba(212, 160, 23, 0.10);
        }
        .breadcrumb-wrap {
            background: #f0ede4;
            padding: 0.6rem 0;
            border-bottom: 1px solid #e0dcd0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
            color: #555;
            list-style: none;
            padding: 0;
        }
        .breadcrumb li {
            margin-bottom: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #999;
        }
        .breadcrumb a {
            color: #7a6a3a;
        }
        .breadcrumb a:hover {
            color: var(--gold-dark);
        }
        .breadcrumb .current {
            color: #333;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0c0e1a 0%, #1a1d33 60%, #2a1f0a 100%);
            color: var(--text-light);
            padding: 3rem 0 3.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "★";
            font-size: 20rem;
            color: rgba(212, 160, 23, 0.04);
            position: absolute;
            right: -5%;
            top: -20%;
            pointer-events: none;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
            color: var(--gold-light);
            max-width: 900px;
            margin: 0 auto 0.6rem;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto 1.2rem;
            font-weight: 300;
        }
        .hero .meta-line {
            font-size: 0.95rem;
            color: #a99a7a;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .hero .meta-line i {
            margin-right: 0.4rem;
            color: var(--gold);
        }
        .main-wrap {
            background: var(--cream);
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            align-items: start;
        }
        .content-body {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow-sm);
        }
        .content-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary-mid);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f0e8d8;
            padding-bottom: 0.4rem;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #2c2e42;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .content-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3d3f55;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .content-body p {
            margin-bottom: 1.1rem;
            color: #2a2a36;
        }
        .content-body p b,
        .content-body p strong {
            color: #0c0e1a;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
        }
        .content-body .highlight-box {
            background: #f8f3e8;
            border-left: 4px solid var(--gold);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.5rem 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .featured-image-wrap {
            margin: 2rem 0;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            background: #f0ede4;
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #555;
            font-style: italic;
            background: #faf8f0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-mid);
            border-bottom: 2px solid var(--gold);
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #f0ede4;
            margin-bottom: 0;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: #2c2e42;
            font-weight: 500;
            display: block;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: var(--gold-dark);
            padding-left: 4px;
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: border-color 0.25s;
            background: #faf8f0;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--gold);
            outline: none;
            background: #fff;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: var(--gold-dark);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #9a7400;
            transform: scale(1.02);
        }
        .search-form button i {
            margin-right: 0.3rem;
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2.5rem 0 0;
            padding-top: 2rem;
            border-top: 2px solid #f0e8d8;
        }
        .comment-box,
        .score-box {
            flex: 1 1 280px;
            background: #faf8f0;
            padding: 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .comment-box h3,
        .score-box h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-mid);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius-sm);
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            font-size: 0.95rem;
            transition: border-color 0.25s;
            background: #fff;
        }
        .comment-box textarea:focus {
            border-color: var(--gold);
            outline: none;
        }
        .comment-box input[type="text"],
        .score-box input[type="number"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            transition: border-color 0.25s;
            background: #fff;
            margin-top: 0.5rem;
        }
        .comment-box input:focus,
        .score-box input:focus {
            border-color: var(--gold);
            outline: none;
        }
        .comment-box .btn-submit,
        .score-box .btn-submit {
            margin-top: 0.8rem;
            padding: 0.6rem 1.8rem;
            background: var(--primary-mid);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .comment-box .btn-submit:hover,
        .score-box .btn-submit:hover {
            background: #2c2f50;
            transform: scale(1.02);
        }
        .score-box .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .score-box .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .score-box .star-rating i:hover,
        .score-box .star-rating i.active {
            color: var(--gold);
            transform: scale(1.1);
        }
        .score-box .star-rating i.active {
            color: var(--gold-dark);
        }
        .site-footer {
            background: var(--primary-dark);
            color: #bbb;
            padding: 2.5rem 0 1.5rem;
            font-size: 0.92rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-inner h4 {
            color: var(--gold-light);
            font-size: 1.05rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        .footer-inner p {
            color: #aaa;
            line-height: 1.6;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.3rem;
        }
        .footer-inner ul li a {
            color: #bbb;
            transition: color 0.2s, padding-left 0.2s;
        }
        .footer-inner ul li a:hover {
            color: var(--gold-light);
            padding-left: 3px;
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
            padding: 0.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            color: #bbb;
            margin-right: 1.2rem;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: var(--gold-light);
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #888;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subhead {
                font-size: 1rem;
            }
            .content-body {
                padding: 1.2rem 1rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 1rem 0 1.5rem;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
                border-top: 1px solid rgba(255, 215, 0, 0.1);
                gap: 0;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.8rem 2rem;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .primary-nav a:last-child {
                border-bottom: none;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .interaction-panel {
                flex-direction: column;
                gap: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero .meta-line {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .my-logo span {
                font-size: 0.65rem;
            }
            .content-body {
                padding: 0.8rem 0.8rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--gold);
            color: #000;
            padding: 0.6rem 1.2rem;
            z-index: 10000;
            font-weight: 600;
            border-radius: 0 0 6px 0;
        }
        .skip-link:focus {
            top: 0;
        }
        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
