        *,
        *::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: #f4f7fb;
            color: #1e293b;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0f3b5e;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover {
            color: #d97706;
            text-decoration: none;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #0c1f2e;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d97706;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.4rem;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.25rem;
            margin-top: 1.2rem;
            color: #2c3e50;
        }
        p {
            margin-bottom: 1rem;
            word-spacing: 0.02em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .badge {
            display: inline-block;
            background: #d97706;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .site-header {
            background: linear-gradient(135deg, #0b2233 0%, #1a3a4f 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fbbf24;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo:hover {
            color: #fcd34d;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #fbbf24;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e2e8f0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: #fbbf24;
            color: #0b2233;
        }
        .nav-menu a i {
            margin-right: 0.4rem;
        }
        .breadcrumb {
            background: #e9eef3;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d1d9e6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a9aa8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #0f3b5e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #4a5c6e;
            font-weight: 600;
        }
        .main-wrap {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .article-body {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        @media (max-width: 600px) {
            .article-body {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.8rem 0 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f1f5f9;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #475569;
        }
        .update-time {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: #64748b;
            margin: 1rem 0 0.2rem;
            flex-wrap: wrap;
        }
        .update-time i {
            color: #d97706;
        }
        .toc {
            background: #f1f6fc;
            border-radius: 18px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0 2.2rem;
            border: 1px solid #dce5ef;
        }
        .toc h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .toc ul {
            list-style: none;
            padding: 0;
            columns: 1;
        }
        @media (min-width: 600px) {
            .toc ul {
                columns: 2;
                column-gap: 2rem;
            }
        }
        .toc li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .toc a {
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            padding: 0.2rem 0;
        }
        .toc a::before {
            content: "⚽ ";
            color: #d97706;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.5rem 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9eef3;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #fbbf24;
            padding-bottom: 0.4rem;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #e2e8f0;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #0f3b5e;
        }
        .link-list a:hover {
            color: #d97706;
        }
        .link-list a i {
            color: #d97706;
            font-size: 0.85rem;
        }
        .search-form,
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }
        .search-form {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 0.65rem 1rem;
            border: 2px solid #d1d9e6;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #d97706;
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            background: #0b2233;
            color: #fff;
            border: none;
            padding: 0.65rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #d97706;
        }
        .search-form button:active,
        .comment-form button:active,
        .score-form button:active {
            transform: scale(0.97);
        }
        .comment-form textarea,
        .comment-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #d1d9e6;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            width: 100%;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #d97706;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form .row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 140px;
        }
        .score-form .star-select {
            display: flex;
            gap: 0.6rem;
            font-size: 1.6rem;
            color: #f59e0b;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .score-form .star-select i {
            transition: transform 0.15s;
        }
        .score-form .star-select i:hover {
            transform: scale(1.2);
        }
        .score-form .star-select input {
            display: none;
        }
        friend-link {
            display: block;
            background: #1e2f3f;
            color: #e2e8f0;
            padding: 2rem 0;
            margin-top: 2.5rem;
            border-radius: 24px 24px 0 0;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            justify-content: center;
        }
        friend-link a {
            color: #fbbf24;
            text-decoration: none;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(251, 191, 36, 0.15);
            color: #fcd34d;
        }
        friend-link .label {
            font-weight: 600;
            color: #94a3b8;
            margin-right: 0.4rem;
        }
        .site-footer {
            background: #0b1a26;
            color: #b0c4d8;
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            opacity: 0.8;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2a3b;
                padding: 1rem 0;
                border-radius: 0 0 20px 20px;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                text-align: left;
            }
            .header-inner {
                position: relative;
            }
            .toc ul {
                columns: 1;
            }
            .sidebar {
                order: 2;
            }
            .article-body {
                order: 1;
            }
        }
        @media (min-width: 769px) {
            .nav-menu {
                display: flex !important;
            }
            .nav-toggle {
                display: none !important;
            }
        }
        .highlight-box {
            background: #fef9e7;
            border-left: 6px solid #d97706;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #0b2233;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f1f6fc;
            border-radius: 16px;
            padding: 1.2rem 0.8rem;
            text-align: center;
            border: 1px solid #dce5ef;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #d97706;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #475569;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .btn-like {
            background: none;
            border: 2px solid #d1d9e6;
            border-radius: 40px;
            padding: 0.4rem 1.2rem;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #1e293b;
        }
        .btn-like:hover {
            border-color: #d97706;
            background: #fef3e2;
        }
        .btn-like i {
            color: #d97706;
        }
        .player-quote {
            font-style: italic;
            background: #f1f6fc;
            border-radius: 18px;
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            position: relative;
            border: 1px solid #dce5ef;
        }
        .player-quote::before {
            content: "“";
            font-size: 4rem;
            color: #d97706;
            position: absolute;
            top: -0.5rem;
            left: 0.8rem;
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        .player-quote .attribution {
            font-weight: 600;
            margin-top: 0.6rem;
            color: #0b2233;
        }
        .schema-hidden {
            display: none;
        }
