        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f8f9fc;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #0a66c2;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #c41e3a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #0b1a2f;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #c41e3a;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin: 0.75rem 0;
        }
        strong,
        b {
            color: #0b1a2f;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            padding: 1.8rem 2rem 2.5rem;
            margin: 1.5rem 0 2.5rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            border-bottom: 1px solid #e6eaf0;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #0b1a2f 20%, #c41e3a 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #c41e3a;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #0b1a2f;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0f2f5;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0.4rem 0;
        }
        .primary-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            position: relative;
        }
        .primary-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #c41e3a;
            transition: width 0.25s ease;
        }
        .primary-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #5e6a7c;
            padding: 0.5rem 0 0.8rem;
            list-style: none;
        }
        .breadcrumb li {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.6rem;
            color: #9aa6b5;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #0a66c2;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0 1rem;
            background: #f2f4f8;
            padding: 0.5rem 0.5rem 0.5rem 1rem;
            border-radius: 60px;
            align-items: center;
            border: 1px solid #e0e4ec;
            transition: border-color 0.2s;
        }
        .search-form:focus-within {
            border-color: #c41e3a;
            background: #fff;
        }
        .search-form i {
            color: #7a8599;
            font-size: 1rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            border: none;
            background: transparent;
            padding: 0.6rem 0;
            font-size: 0.95rem;
            outline: none;
            color: #1e1e2a;
        }
        .search-form input[type="text"]::placeholder {
            color: #8e9aae;
        }
        .search-form button {
            background: #0b1a2f;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #c41e3a;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .featured-image figcaption {
            font-size: 0.85rem;
            color: #5e6a7c;
            padding: 0.6rem 0.5rem 0.2rem;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #e6eaf0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef1f6;
        }
        th {
            background: #f2f4f8;
            font-weight: 600;
            color: #0b1a2f;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fafbfd;
        }
        .score-area {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #e6eaf0;
        }
        .score-stars {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #e0a800;
            cursor: pointer;
            margin: 0.5rem 0 0.8rem;
        }
        .score-stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
            color: #ffc107;
        }
        .score-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            margin-top: 0.3rem;
        }
        .score-form input[type="number"] {
            width: 80px;
            padding: 0.4rem 0.6rem;
            border: 1px solid #d0d6e0;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        .score-form button,
        .comment-form button {
            background: #0b1a2f;
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .score-form button:hover,
        .comment-form button:hover {
            background: #c41e3a;
            transform: scale(1.02);
        }
        .comment-section {
            margin: 2.5rem 0 1.2rem;
            padding-top: 1.2rem;
            border-top: 2px dashed #dce2ec;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1rem 0 1.8rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 1px solid #d0d6e0;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #c41e3a;
            outline: none;
        }
        .comment-form .row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.6rem 1rem;
            border: 1px solid #d0d6e0;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        .comment-form input[type="text"]:focus {
            border-color: #c41e3a;
            outline: none;
        }
        .site-footer {
            border-top: 1px solid #e6eaf0;
            padding: 1.8rem 0 2.2rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #3d4a5c;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
        }
        friend-link {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            align-items: center;
            font-weight: 500;
        }
        friend-link a {
            color: #0a66c2;
        }
        friend-link a:hover {
            color: #c41e3a;
        }
        .copyright {
            font-size: 0.82rem;
            color: #6a7a8e;
            margin-top: 0.8rem;
            border-top: 1px solid #eef1f6;
            padding-top: 1rem;
            text-align: center;
        }
        @media (max-width: 820px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 0.6rem;
            }
            .site-header {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.6rem;
                padding: 1rem 0 0.4rem;
                border-top: 1px solid #e6eaf0;
                margin-top: 0.6rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                font-size: 1rem;
                padding: 0.4rem 0;
            }
            .search-form {
                flex-direction: row;
                padding: 0.3rem 0.3rem 0.3rem 0.8rem;
            }
            .search-form button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
            .score-stars {
                font-size: 1.5rem;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            friend-link {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem 0.6rem 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a8e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 1rem 0 0.2rem;
            padding: 0.4rem 0.8rem;
            background: #f2f4f8;
            border-radius: 30px;
            width: fit-content;
        }
        .badge {
            display: inline-block;
            background: #c41e3a10;
            color: #c41e3a;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            border: 1px solid #c41e3a20;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #dce2ec, transparent);
            margin: 2rem 0;
        }
        .quote {
            border-left: 4px solid #c41e3a;
            padding: 0.8rem 1.2rem;
            background: #f8f9fc;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
            font-style: italic;
            color: #2d3b4e;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 680px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fc, #eef2f9);
            border-radius: 20px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #e0e6f0;
            margin: 1.2rem 0;
        }
