        *,
        *::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: #faf7f2;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 0 0 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #211d1a;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
            border-bottom: 4px solid #d97706;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d2a27;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.25rem;
            color: #3d3834;
            font-weight: 600;
            margin-top: 1.6rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            color: #f1e9db;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f59e0b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem 1.2rem;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem 1rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #e9ddce;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            border-bottom-color: #f59e0b;
            color: #fbbf24;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f1e9db;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #1a1a2e;
            padding: 1rem 0.5rem;
            border-top: 1px solid #2d2a3e;
        }
        #nav-toggle:checked~.nav-list li a {
            padding: 0.6rem 0.2rem;
        }
        .breadcrumb {
            background: #ece6db;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #7a4a1a;
        }
        .breadcrumb .current {
            color: #3d2b1a;
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .article-img {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            background: #e9e1d6;
            padding: 4px;
        }
        .article-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #6b5e50;
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .search-section {
            background: #e7dfd2;
            padding: 1.5rem 1.8rem;
            border-radius: 20px;
            margin: 2.5rem 0;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #cabbac;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf7;
            outline: none;
            transition: 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d97706;
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
        }
        .search-form button {
            background: #d97706;
            border: none;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b45309;
            transform: translateY(-1px);
        }
        .comment-section,
        .score-section {
            background: #f3ede5;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border: 1px solid #ddd2c2;
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            border-left: 4px solid #d97706;
            padding-left: 1rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d6cbbc;
            border-radius: 12px;
            font-size: 1rem;
            background: #fffcf7;
            transition: 0.2s;
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d97706;
            outline: none;
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
        }
        .comment-form button,
        .score-form button {
            background: #1a1a2e;
            color: #f1e9db;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #2d2a4e;
            transform: translateY(-1px);
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d6cbbc;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .score-stars i {
            transition: 0.15s;
        }
        .score-stars i.active,
        .score-stars i:hover,
        .score-stars i:hover~i {
            color: #f59e0b;
        }
        .score-stars i:hover {
            transform: scale(1.15);
        }
        .score-form .star-input {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .score-form .star-input input {
            display: none;
        }
        .score-form .star-input label {
            font-size: 2.2rem;
            color: #d6cbbc;
            cursor: pointer;
            transition: 0.15s;
        }
        .score-form .star-input input:checked~label,
        .score-form .star-input label:hover,
        .score-form .star-input label:hover~label {
            color: #f59e0b;
        }
        footer {
            background: #1a1a2e;
            color: #c9beb0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #d97706;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        footer h4 {
            color: #f1e9db;
            margin-top: 0;
            border-bottom: 2px solid #2d2a3e;
            padding-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            background: #2a2535;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1.2rem 0;
        }
        friend-link a {
            color: #fbbf24;
            font-weight: 500;
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
        }
        friend-link a:hover {
            color: #f59e0b;
        }
        .copyright {
            border-top: 1px solid #2d2a3e;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #9a8e7e;
        }
        .copyright strong {
            color: #e9ddce;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #d97706;
            color: #fff;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
        .highlight-box {
            background: #f7f0e6;
            border-left: 6px solid #d97706;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .inline-list {
            display: inline;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .inline-list li {
            display: inline;
            margin-right: 1.2rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #d97706;
            color: #fff;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #b45309;
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #d97706;
            color: #d97706;
        }
        .btn-outline:hover {
            background: #d97706;
            color: #fff;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 0.8rem 0;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .score-stars {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .comment-section,
            .score-section,
            .search-section {
                padding: 1.2rem;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        main>* {
            animation: fadeInUp 0.4s ease-out;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fcf9f4;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e2d7c9;
        }
        th {
            background: #d97706;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f3ede5;
        }
