        *,
        *::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: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #004d99;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e8b800;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b1a2e;
            margin-top: 1.6rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #e8b800;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #004d99;
            padding-left: 1rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #003366;
        }
        h4 {
            font-size: 1.2rem;
            color: #1a3a5c;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0d860, #e8b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(232, 184, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #e8b800;
            font-size: 1.6rem;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: inherit;
            background: none;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .nav-toggle:hover {
            border-color: #e8b800;
            color: #e8b800;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8eef5;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: all 0.2s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(232, 184, 0, 0.15);
            color: #e8b800;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #e8b800;
            border-bottom: 2px solid #e8b800;
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce3ec;
        }
        .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: #7a8ba8;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #004d99;
        }
        .breadcrumb .current {
            color: #3a4a6a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #0b1a2e, #1f4a7a);
            color: #fff;
            padding: 2.8rem 0 2.4rem;
            text-align: center;
            border-bottom: 6px solid #e8b800;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #e8b800;
            font-size: 2.4rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 760px;
            margin: 1rem auto 0.4rem;
            color: #d0dcee;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(232, 184, 0, 0.2);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #f0d860;
            margin-top: 0.6rem;
        }
        .search-section {
            background: #fff;
            padding: 1.6rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            display: flex;
            max-width: 640px;
            margin: 0 auto;
            gap: 0.6rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1 1 260px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dce3ec;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #004d99;
        }
        .search-form button {
            background: #004d99;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #003366;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.4rem;
            padding: 2.4rem 0;
        }
        .content-area {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.4rem;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f7;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e8b800;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        .sidebar-card li {
            padding: 0.3rem 0;
            border-bottom: 1px solid #f0f2f6;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 1.8rem;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
        }
        .match-table th {
            background: #0b1a2e;
            color: #f0d860;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .match-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eef2f7;
        }
        .match-table tr:hover td {
            background: #f8f9fc;
        }
        .match-table .team-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .match-table .team-badge i {
            font-size: 1.2rem;
            color: #004d99;
        }
        .live-tag {
            background: #d32f2f;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0f4fa;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #3a4a6a;
            text-align: center;
            font-style: italic;
        }
        .feedback-section {
            margin-top: 2.4rem;
            padding-top: 2rem;
            border-top: 2px solid #eef2f7;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin-top: 1.2rem;
        }
        .feedback-card {
            background: #f8f9fc;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            border: 1px solid #e8edf4;
        }
        .feedback-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #0b1a2e;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 0.6rem 1rem;
            border: 2px solid #dce3ec;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #004d99;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            background: #004d99;
            color: #fff;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #003366;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b800;
        }
        friend-link {
            display: block;
            background: #f0f4fa;
            border-radius: 16px;
            padding: 1.4rem 2rem;
            margin: 2rem 0 0.8rem;
            border: 1px solid #dce3ec;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #0b1a2e;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            margin: 0.6rem 0 0;
        }
        friend-link li a {
            font-weight: 500;
        }
        .site-footer {
            background: #0b1a2e;
            color: #b0c4de;
            padding: 2rem 0 1.2rem;
            margin-top: auto;
            border-top: 4px solid #e8b800;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .footer-inner .copyright {
            font-size: 0.9rem;
        }
        .footer-inner .copyright strong {
            color: #f0d860;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .content-area {
                padding: 1.4rem 1.2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
        }
        @media (max-width: 680px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.6rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 1.8rem 0;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .search-form input {
                flex: 1 1 100%;
            }
            .match-table {
                font-size: 0.85rem;
            }
            .match-table th,
            .match-table td {
                padding: 0.5rem 0.6rem;
            }
            .sidebar {
                order: 2;
            }
            .content-area {
                order: 1;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.4rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 420px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-area {
                padding: 1rem 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .match-table th,
            .match-table td {
                padding: 0.4rem 0.4rem;
                font-size: 0.75rem;
            }
        }
        .highlight {
            background: linear-gradient(to right, #fff9e0, #fff3c4);
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #e8b800;
            color: #0b1a2e;
            font-weight: 700;
            font-size: 0.75rem;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .spacer {
            height: 0.8rem;
        }
        .text-muted {
            color: #5a6a8a;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .schema-hidden {
            display: none;
        }
