        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: #1a1a2e;
            background: #faf9f6;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0057b3;
            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: #0d1b2a;
            margin-top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f4d03f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f4d03f;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #e0e8f0;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: rgba(244, 208, 63, 0.15);
            color: #f4d03f;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.4rem;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #f1f3f5;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #888;
        }
        .breadcrumb a {
            color: #0057b3;
        }
        .breadcrumb a:hover {
            color: #e63946;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 70%, #2d5a73 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 12rem;
            position: absolute;
            right: -2rem;
            bottom: -3rem;
            opacity: 0.08;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            color: #fff;
            margin-bottom: 0.8rem;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f4d03f, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        .hero-meta {
            font-size: 0.95rem;
            opacity: 0.75;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .hero-meta i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e8e8e8;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0d0d0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #0057b3;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #0057b3;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #003d82;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f4d03f;
            display: inline-block;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #1b3a4b;
        }
        .article-body h4 {
            font-size: 1.2rem;
            margin: 1.4rem 0 0.6rem;
            color: #2d5a73;
        }
        .article-body p {
            margin-bottom: 1.2rem;
            color: #2c2c3a;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.2rem;
        }
        .article-body li {
            margin-bottom: 0.4rem;
        }
        .article-body .feature-box {
            background: #f0f7fb;
            border-left: 5px solid #f4d03f;
            padding: 1.4rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .article-body .feature-box h4 {
            margin-top: 0;
            color: #0d1b2a;
        }
        .article-body .stat-highlight {
            display: inline-block;
            background: #0d1b2a;
            color: #f4d03f;
            padding: 0.1rem 0.8rem;
            border-radius: 4px;
            font-weight: 700;
        }
        .content-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .content-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .content-image figcaption {
            background: #f1f3f5;
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 1.6rem;
            margin-bottom: 1.8rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #0d1b2a;
            border-bottom: 2px solid #f4d03f;
            padding-bottom: 0.4rem;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
        }
        .sidebar-links li {
            margin-bottom: 0.6rem;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .sidebar-links a:hover {
            background: #f0f7fb;
            text-decoration: none;
        }
        .sidebar-links a i {
            color: #f4d03f;
            font-size: 0.9rem;
            width: 1.2rem;
            text-align: center;
        }
        .rating-section {
            background: #fff;
            border-radius: 12px;
            padding: 1.6rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
            color: #ddd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f4d03f;
            transform: scale(1.1);
        }
        .rating-stars label i {
            pointer-events: none;
        }
        .rating-form button {
            margin-top: 0.8rem;
            padding: 0.6rem 1.8rem;
            background: #0d1b2a;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #1b3a4b;
        }
        .comments-section {
            background: #fff;
            border-radius: 12px;
            padding: 1.8rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #eee;
        }
        .comments-section h3 {
            margin-bottom: 1.2rem;
            color: #0d1b2a;
            border-bottom: 2px solid #f4d03f;
            padding-bottom: 0.4rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d0d0d0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #0057b3;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #d0d0d0;
            border-radius: 50px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form .form-row input:focus {
            border-color: #0057b3;
        }
        .comment-form button {
            padding: 0.7rem 2rem;
            background: #0057b3;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #003d82;
        }
        .site-footer {
            background: #0d1b2a;
            color: #c8d6e5;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f4d03f;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .footer-inner p {
            font-size: 0.95rem;
            opacity: 0.85;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: #c8d6e5;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #f4d03f;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .footer-bottom .copyright {
            margin-top: 0.4rem;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
        }
        friend-link a {
            color: #c8d6e5;
            margin: 0 0.3rem;
        }
        friend-link a:hover {
            color: #f4d03f;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0d1b2a;
                padding: 1rem 0;
                border-radius: 0 0 12px 12px;
                margin-top: 0.8rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.8rem 1.5rem;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
            }
            .search-form input[type="text"] {
                min-width: 150px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
        }
        .highlight {
            background: #fef9e0;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .last-updated {
            display: inline-block;
            background: #e8edf2;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #555;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.7rem 1rem;
            border: 1px solid #ddd;
            text-align: left;
        }
        .table-wrap th {
            background: #0d1b2a;
            color: #f4d03f;
            font-weight: 600;
        }
        .table-wrap tr:nth-child(even) {
            background: #f9f9f9;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #0d1b2a;
            color: #f4d03f;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, background 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: translateY(-4px);
            background: #1b3a4b;
        }
        @media (max-width: 480px) {
            .btn-top {
                bottom: 1rem;
                right: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
