        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f2f6f9;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0057a3;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0b1e2e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #e63946;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 3px solid #dce5ed;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.1rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1e2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #f7d44a;
            font-size: 1.9rem;
        }
        .my-logo:hover {
            color: #f7d44a;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.7;
            display: block;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8edf3;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            position: relative;
            transition: color 0.2s;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f7d44a;
            transition: width 0.25s;
        }
        .main-nav a:hover {
            color: #f7d44a;
            text-decoration: none;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .menu-toggle:focus {
            outline: 2px solid #f7d44a;
        }
        .breadcrumb {
            background: #e9eef3;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0d9e2;
        }
        .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: #6b7a8a;
        }
        .breadcrumb a {
            color: #0057a3;
        }
        .breadcrumb .current {
            color: #4a5b6b;
            font-weight: 500;
        }
        .search-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 1px solid #dce5ed;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #cbd5e0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #0057a3;
        }
        .search-form button {
            background: #e63946;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #c1122a;
            transform: scale(1.02);
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        .main-content {
            background: #fff;
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        .article-body {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #e2e8f0;
            padding-left: 2rem;
        }
        .featured-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-img-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #5a6a7a;
            padding: 0.6rem 1rem;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .content-link-list {
            background: #f0f4f9;
            border-radius: 14px;
            padding: 1.2rem 1.6rem;
            margin: 1.8rem 0;
            border-left: 4px solid #e63946;
        }
        .content-link-list h4 {
            margin-top: 0;
            color: #0b1e2e;
        }
        .content-link-list ul {
            columns: 2;
            column-gap: 1.8rem;
            list-style: none;
            padding: 0;
        }
        .content-link-list li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .content-link-list li::before {
            content: "⚽ ";
            font-size: 0.8rem;
        }
        .content-link-list a {
            font-weight: 500;
        }
        .sidebar-card {
            background: #f8fafc;
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            margin-bottom: 1.8rem;
            border: 1px solid #e2e8f0;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #dce5ed;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 0.5rem;
            border-bottom: 1px dotted #dce5ed;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list li:last-child {
            border-bottom: none;
        }
        .sidebar-link-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-link-list i {
            color: #e63946;
            width: 1.2rem;
            text-align: center;
        }
        .rating-block {
            background: #fff8e7;
            border: 1px solid #f0dbaa;
            border-radius: 14px;
            padding: 1.4rem 1.2rem;
            margin: 1.8rem 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #e2b714;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: transform 0.15s, color 0.2s;
            cursor: pointer;
            color: #d0d5dd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5b342;
            transform: scale(1.15);
        }
        .rating-form button {
            margin-top: 0.8rem;
            background: #1a3a5c;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            width: 100%;
        }
        .rating-form button:hover {
            background: #0b1e2e;
        }
        .comment-block {
            margin: 2.5rem 0;
            padding-top: 1.5rem;
            border-top: 2px solid #e2e8f0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #cbd5e0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #0057a3;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.8rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 40px;
            font-size: 0.95rem;
        }
        .comment-form .form-row input:focus {
            border-color: #0057a3;
            outline: none;
        }
        .comment-form button {
            background: #0057a3;
            color: #fff;
            border: none;
            padding: 0.8rem 2.4rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-form button:hover {
            background: #003d73;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #5a6a7a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }
        .site-footer {
            background: #0b1e2e;
            color: #cbd5e0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f7d44a;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #b0c4d8;
        }
        .site-footer a:hover {
            color: #f7d44a;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.3rem 0;
        }
        .copyright {
            border-top: 1px solid #1e3a5f;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                margin-top: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .content-link-list ul {
                columns: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form button span {
                display: none;
            }
            .search-form button i {
                margin-right: 0;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            h1 {
                font-size: 1.4rem;
                padding-left: 0.7rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: auto;
            }
        }
        @media print {
            .site-header {
                position: static;
                background: #fff;
                color: #000;
            }
            .site-header a {
                color: #000;
            }
            .search-section,
            .rating-block,
            .comment-block,
            .sidebar {
                display: none;
            }
            .content-grid {
                display: block;
            }
            .site-footer {
                background: #f2f2f2;
                color: #000;
            }
        }
