        *,
        *::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, sans-serif;
            line-height: 1.7;
            background: #f9fafb;
            color: #1e293b;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1d4ed8;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #0e3a9c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #0f172a;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #1d4ed8;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.15rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
            color: #334155;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 3rem 0;
        }
        .site-header {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #94a3b8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1d4ed8;
        }
        .breadcrumb span {
            color: #475569;
        }
        .hero {
            background: linear-gradient(135deg, #0b1d31, #1a3a5c);
            color: #fff;
            padding: 3.5rem 0;
            text-align: center;
            border-bottom: 4px solid #facc15;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-top: 0;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            color: #cbd5e1;
            font-size: 1.2rem;
            max-width: 750px;
            margin: 0.8rem auto 0;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #facc15;
            backdrop-filter: blur(4px);
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            margin-bottom: 2rem;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
        }
        .search-box {
            background: #fff;
            border-radius: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            max-width: 520px;
            margin: 0 auto;
            border: 1px solid #e2e8f0;
            transition: border 0.3s;
        }
        .search-box:focus-within {
            border-color: #1d4ed8;
            box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
        }
        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            padding: 0.8rem 0.2rem;
            background: transparent;
            color: #1e293b;
        }
        .search-box button {
            background: #1d4ed8;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #0e3a9c;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .comment-section textarea,
        .rating-section select,
        .rating-section input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.25s;
            background: #fafafa;
        }
        .comment-section textarea:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #1d4ed8;
            outline: none;
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }
        .comment-section textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            background: #1d4ed8;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-block;
        }
        .btn-primary:hover {
            background: #0e3a9c;
            transform: translateY(-1px);
        }
        .btn-primary i {
            margin-right: 0.4rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #facc15;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #f97316;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            background: #f1f5f9;
            font-size: 0.9rem;
            color: #475569;
            text-align: center;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background: #f1f5f9;
            font-weight: 700;
            color: #0f172a;
        }
        tr:hover td {
            background: #f8fafc;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .site-footer a {
            color: #93c5fd;
        }
        .site-footer a:hover {
            color: #facc15;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .footer-inner friend-link {
            display: block;
            margin-top: 0.5rem;
        }
        .footer-inner friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1e293b;
            font-size: 0.85rem;
            color: #94a3b8;
            grid-column: 1 / -1;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0.8rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 0.2rem 0.6rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
                padding: 0.8rem;
                gap: 0.6rem;
            }
            .search-box button {
                width: 100%;
                border-radius: 30px;
            }
            .hero {
                padding: 2.2rem 0;
            }
            .hero p {
                font-size: 1rem;
            }
            .card {
                padding: 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.6rem 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.7rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fef9c3 0%, #fef9c3 40%, transparent 70%);
            padding: 0 0.3rem;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #1d4ed8;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .badge-gold {
            background: #facc15;
            color: #0f172a;
        }
        .badge-green {
            background: #16a34a;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
            margin: 2.5rem 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .link-list li::before {
            content: "⚽";
            margin-right: 0.3rem;
        }
        .hidden-schema {
            display: none;
        }
