        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1a6b8a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d4b63;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #0f2838;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #e67e22;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #e67e22;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1a4a5e;
        }
        h4 {
            font-size: 1.2rem;
            color: #2c5f73;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            padding: 1.5rem 2rem 2rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e8edf2;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e67e22, #d35400);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
            text-decoration: none;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #4a6a7a;
            color: #4a6a7a;
            display: block;
            letter-spacing: 0.2px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #1e3a4a;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #e67e22;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1e3a4a;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #eef2f6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #5a7a8a;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b0c4d0;
        }
        .breadcrumb a {
            color: #3a6a7a;
        }
        .breadcrumb a:hover {
            color: #e67e22;
        }
        .breadcrumb .active {
            color: #1a2a3a;
            font-weight: 600;
        }
        .search-section {
            background: #f0f4f9;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #0f2838;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d0dce5;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #e67e22;
        }
        .search-form button {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #d35400;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #e8edf2;
            padding-left: 2rem;
        }
        .sidebar .card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .sidebar .card h3 {
            margin-top: 0;
            border-bottom: 2px solid #e67e22;
            padding-bottom: 0.4rem;
            font-size: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #e8edf2;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            color: #e67e22;
            width: 1.2rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #f0f4f9;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #3a5a6a;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding: 2rem 0;
            border-top: 2px solid #e8edf2;
        }
        .comment-box,
        .score-box {
            background: #fafcfe;
            border: 1px solid #e0e8f0;
            border-radius: 16px;
            padding: 1.8rem;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .comment-box form,
        .score-box form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-box textarea,
        .score-box input,
        .score-box select {
            padding: 0.7rem 1rem;
            border: 2px solid #d0dce5;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
            width: 100%;
        }
        .comment-box textarea:focus,
        .score-box input:focus,
        .score-box select:focus {
            border-color: #e67e22;
        }
        .comment-box textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #e67e22;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-submit:hover {
            background: #d35400;
            transform: scale(1.02);
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1rem;
            border-top: 2px solid #e8edf2;
            font-size: 0.95rem;
            color: #4a6a7a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            font-weight: 600;
            color: #0f2838;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            font-weight: 400;
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #e8edf2;
            font-size: 0.85rem;
            color: #6a8a9a;
        }
        .copyright strong {
            color: #1e3a4a;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                margin-top: 1.5rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 1rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 700px) {
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 1rem 0;
                border-radius: 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
                margin-top: 0.5rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .comment-box,
            .score-box {
                padding: 1rem;
            }
        }
        .badge {
            background: #e67e22;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-block;
        }
        .highlight {
            background: #fff6e5;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .last-updated {
            display: inline-block;
            background: #eef2f6;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #3a5a6a;
            margin: 1rem 0 0.5rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fafcfe;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8edf2;
        }
        th {
            background: #e8f0f5;
            font-weight: 700;
            color: #0f2838;
        }
        tr:last-child td {
            border-bottom: none;
        }
        section {
            scroll-margin-top: 2rem;
        }
