        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5em;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.25;
            color: #1a1a1a;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2em;
            margin-bottom: 0.6em;
            border-bottom: 2px solid #d4c5a9;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8em;
            margin-bottom: 0.4em;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4em;
            margin-bottom: 0.3em;
            font-weight: 500;
        }
        p {
            margin-bottom: 1.1em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1c1c1c;
            color: #f0e9e0;
            padding: 12px 0 8px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f0e9e0;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            color: #e6c27a;
            text-decoration: none;
        }
        .my-logo i {
            color: #e6c27a;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            gap: 6px 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ddd6cc;
            font-size: 0.95rem;
            padding: 4px 6px;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #33312e;
            color: #e6c27a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e9e0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #33312e;
        }
        .nav-check {
            display: none;
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 8px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4c5a9;
            width: 100%;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7a6a;
        }
        .breadcrumb a {
            color: #6a5a4a;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #3a2a1a;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #2c2a27 0%, #4a3f35 100%);
            color: #f0ebe4;
            padding: 48px 20px 40px;
            text-align: center;
            border-radius: 0 0 24px 24px;
            margin-bottom: 32px;
        }
        .hero h1 {
            color: #f0ebe4;
            font-size: 2.8rem;
            margin-bottom: 0.25em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }
        .hero h1 i {
            color: #e6c27a;
            margin-right: 8px;
        }
        .hero .sub {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 12px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            opacity: 0.7;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 4px;
        }
        .search-section {
            background: #fffcf8;
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 32px;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 18px;
            border: 2px solid #d4c5a9;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
        }
        .search-form button {
            padding: 14px 32px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 32px 0;
        }
        .content-area {
            background: #fffcf8;
            padding: 32px 28px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fffcf8;
            padding: 28px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #d4c5a9;
            padding-bottom: 6px;
            margin-top: 0;
            margin-bottom: 16px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #eee8e0;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a i {
            width: 20px;
            color: #b8860b;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0ebe4;
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #4a3f35;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #2c2a27;
            color: #f0ebe4;
            padding: 12px 16px;
            text-align: left;
        }
        .data-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #e0d8ce;
        }
        .data-table tr:nth-child(even) {
            background: #f8f4ee;
        }
        .data-table tr:hover {
            background: #eee6dc;
        }
        .blockquote-custom {
            border-left: 5px solid #b8860b;
            background: #f5efe8;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3a2a1a;
        }
        .blockquote-custom cite {
            display: block;
            margin-top: 8px;
            font-size: 0.9rem;
            font-style: normal;
            color: #6a5a4a;
        }
        .interaction-section {
            background: #f5efe8;
            padding: 28px 24px;
            border-radius: 16px;
            margin-top: 40px;
            border: 1px solid #d4c5a9;
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form input,
        .score-form select {
            padding: 12px 16px;
            border: 2px solid #d4c5a9;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fff;
            outline: none;
            transition: border-color 0.3s;
            width: 100%;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: #b8860b;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form .field-half {
            flex: 1 1 200px;
        }
        .comment-form .field-full {
            flex: 1 1 100%;
        }
        .comment-form button,
        .score-form button {
            padding: 12px 32px;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #9a7209;
        }
        .score-form {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .score-form select {
            width: auto;
            min-width: 80px;
            flex: 0 0 auto;
        }
        .score-form input[type="text"] {
            flex: 1 1 200px;
        }
        .site-footer {
            background: #1c1c1c;
            color: #cbc4ba;
            padding: 40px 20px 24px;
            margin-top: 48px;
            border-top: 4px solid #b8860b;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #e6c27a;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            padding: 4px 0;
        }
        .footer-col ul li a {
            color: #cbc4ba;
        }
        .footer-col ul li a:hover {
            color: #e6c27a;
        }
        friend-link {
            display: block;
            padding: 8px 0;
        }
        friend-link a {
            color: #cbc4ba;
            display: inline-block;
            margin-right: 16px;
        }
        friend-link a:hover {
            color: #e6c27a;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #3a3530;
            font-size: 0.9rem;
            color: #8a8075;
        }
        .copyright a {
            color: #b8860b;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a2825;
                padding: 12px 16px;
                border-radius: 0 0 12px 12px;
                margin-top: 8px;
            }
            .nav-check:checked~.main-nav {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                gap: 8px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero .sub {
                font-size: 1rem;
            }
            .content-area {
                padding: 20px 16px;
            }
            .search-form button {
                padding: 12px 20px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .footer-inner {
                flex-direction: column;
                gap: 24px;
            }
        }
        @media (max-width: 460px) {
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .score-form {
                flex-direction: column;
                align-items: stretch;
            }
            .score-form select,
            .score-form input {
                width: 100%;
            }
        }
        .text-muted {
            color: #7a6a5a;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .mt-2 {
            margin-top: 1.2em;
        }
        .mb-1 {
            margin-bottom: 0.6em;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .highlight {
            background: #fcf2e0;
            padding: 2px 6px;
            border-radius: 4px;
        }
