        *,
        *::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: #1e2a3a;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #0a66c2;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e85d04;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #0b1b2b;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #e85d04;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 3px solid #e0e7ef;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            padding: 1.8rem 2rem 2.5rem;
            margin: 1.2rem 0 2rem;
        }
        .badge {
            display: inline-block;
            background: #e85d04;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e2e8f0;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0a66c2, #e85d04);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #4a5b6e;
            background: none;
            color: #4a5b6e;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #1e2a3a;
            border-radius: 8px;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            cursor: pointer;
            color: #1e2a3a;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2a3a;
            color: #fff;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 1.8rem;
            align-items: center;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            color: #1e2a3a;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #e85d04;
            color: #e85d04;
            text-decoration: none;
        }
        .main-nav .active {
            border-bottom-color: #0a66c2;
            color: #0a66c2;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            color: #5a6b7c;
            padding: 0.6rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #b0c0d0;
            font-size: 1.2rem;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #0a66c2;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 520px;
            margin: 1.2rem 0 0.8rem;
            background: #f0f4fa;
            border-radius: 60px;
            padding: 0.2rem 0.2rem 0.2rem 1.2rem;
            border: 1px solid #dce3ed;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            color: #1e2a3a;
        }
        .search-box button {
            background: #0a66c2;
            color: #fff;
            border: none;
            border-radius: 60px;
            padding: 0.6rem 1.6rem;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #084a8a;
        }
        .featured-image {
            margin: 1.8rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #eef3f9;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5b6e;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .highlight-card {
            background: #f8fafc;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.4rem;
            border: 1px solid #e8edf4;
            transition: 0.25s;
        }
        .highlight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            border-color: #cbd5e1;
        }
        .highlight-card i {
            font-size: 1.8rem;
            color: #e85d04;
            margin-bottom: 0.4rem;
        }
        .highlight-card h4 {
            margin: 0.2rem 0 0.4rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            margin: 0.8rem 0 1.4rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .link-list-inline li::before {
            content: "⚽";
            margin-right: 0.3rem;
        }
        .link-list-inline a {
            font-weight: 500;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.2rem 0 1.2rem;
            background: #f8fafc;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            border: 1px solid #e2e8f0;
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-section label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .feedback-section input,
        .feedback-section textarea,
        .feedback-section select {
            padding: 0.6rem 1rem;
            border: 1px solid #d0d9e6;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            width: 100%;
        }
        .feedback-section input:focus,
        .feedback-section textarea:focus,
        .feedback-section select:focus {
            border-color: #0a66c2;
            box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
            outline: none;
        }
        .feedback-section textarea {
            resize: vertical;
            min-height: 80px;
        }
        .feedback-section .btn-submit {
            background: #0a66c2;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-section .btn-submit:hover {
            background: #084a8a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d0d9e6;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0d9e6;
            transition: 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .site-footer {
            border-top: 2px solid #e2e8f0;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
            font-size: 0.95rem;
            color: #4a5b6e;
        }
        .site-footer friend-link {
            display: block;
            margin: 0.6rem 0 1rem;
            padding: 0.8rem 1rem;
            background: #f0f4fa;
            border-radius: 12px;
            font-weight: 500;
        }
        .site-footer friend-link a {
            margin: 0 0.6rem 0 0.2rem;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }
        @media (max-width: 820px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .container {
                padding: 1.2rem 1rem 1.8rem;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.4rem;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: inline-block;
            }
            .site-header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 0.2rem 0.2rem 0.2rem 1rem;
            }
            .highlight-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 500px) {
            .highlight-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .feedback-section {
                padding: 1.2rem 1rem;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: #5a6b7c;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7b8c;
            background: #f0f4fa;
            display: inline-block;
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
        }
        .divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, #e2e8f0, transparent);
            margin: 1.6rem 0;
        }
        blockquote {
            border-left: 5px solid #e85d04;
            background: #f9fafb;
            padding: 0.8rem 1.4rem;
            margin: 1.2rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2a3a4a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafcff;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8edf4;
        }
        th {
            background: #eef3f9;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
