        *,
        *::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;
            background: #f4f7fc;
            color: #1a2634;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #004a9f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e63946;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 20, 40, 0.06);
            border-radius: 24px 24px 0 0;
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e9edf2;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #002856, #004a9f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 74, 159, 0.12);
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7c745;
            font-size: 1.8rem;
            background: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #4a5b6e;
            letter-spacing: 0.3px;
            display: block;
            line-height: 1;
        }
        .my-logo a {
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1a2634;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #004a9f;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #004a9f;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e9edf2;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #f0f4fa;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                margin-top: 0.8rem;
                gap: 0.2rem;
            }
            #nav-toggle:checked~.main-nav {
                display: flex;
            }
            .site-header {
                align-items: center;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 0.2rem;
            color: #4a5b6e;
        }
        .breadcrumb a {
            color: #004a9f;
        }
        .breadcrumb span {
            color: #7a8a9e;
        }
        .breadcrumb i {
            font-size: 0.6rem;
            color: #b0bec5;
        }
        .search-section {
            margin: 1.5rem 0 1rem;
            background: #f0f4fa;
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .search-section label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #002856;
        }
        .search-form {
            display: flex;
            flex: 1 1 260px;
            gap: 0.4rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 1px solid #d0d8e2;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-form input:focus {
            border-color: #004a9f;
            box-shadow: 0 0 0 3px rgba(0, 74, 159, 0.12);
        }
        .search-form button {
            background: #004a9f;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #002856;
        }
        .search-form button:active {
            transform: scale(0.97);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #002856;
            margin: 1.2rem 0 0.4rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #003366;
            margin: 2.4rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #e9edf2;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #004a7a;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #005a8a;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1.1rem;
            color: #1e2c3a;
        }
        .lead {
            font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 400;
            line-height: 1.8;
        }
        strong,
        b {
            color: #002856;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .feature-img {
            margin: 1.8rem 0 1.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .feature-img img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .feature-img figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5b6e;
            background: #f8faff;
            border-top: 1px solid #e9edf2;
            font-style: italic;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.8rem 0;
        }
        .card {
            background: #f8faff;
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #eef3f8;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 40, 80, 0.08);
        }
        .card i {
            color: #f7c745;
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .fixture-table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 16px;
            border: 1px solid #e9edf2;
        }
        .fixture-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 520px;
        }
        .fixture-table th {
            background: #002856;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .fixture-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e9edf2;
        }
        .fixture-table tr:nth-child(even) {
            background: #f8faff;
        }
        .fixture-table tr:hover {
            background: #edf3fa;
        }
        .tag {
            display: inline-block;
            background: #e9edf2;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #004a7a;
        }
        .tag-ucl {
            background: #dceaff;
            color: #002856;
        }
        .tag-caf {
            background: #e3f0e6;
            color: #1d5e3f;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0 1.5rem;
            background: #f8faff;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            border: 1px solid #e9edf2;
        }
        .interaction-area h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .interaction-area form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .interaction-area textarea,
        .interaction-area input,
        .interaction-area select {
            padding: 0.7rem 1rem;
            border: 1px solid #d0d8e2;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .interaction-area textarea:focus,
        .interaction-area input:focus,
        .interaction-area select:focus {
            border-color: #004a9f;
            box-shadow: 0 0 0 3px rgba(0, 74, 159, 0.08);
        }
        .interaction-area textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-area .btn-submit {
            background: #004a9f;
            color: #fff;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .interaction-area .btn-submit:hover {
            background: #002856;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #f7c745;
        }
        @media (max-width: 700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                padding: 1.2rem 1rem;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a8e;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0 0.2rem;
            border-top: 1px dashed #dce2ea;
            margin-top: 1rem;
        }
        .footer-area {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 3px solid #e9edf2;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #f0f4fa;
            border-radius: 40px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #dce4ee;
            text-decoration: none;
        }
        .copyright {
            font-size: 0.85rem;
            color: #4a5b6e;
            padding: 1.2rem 0 0.5rem;
            border-top: 1px solid #eef3f8;
            margin-top: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.5rem;
        }
        .copyright i {
            color: #b0bec5;
        }
        .highlight-box {
            background: #eef6fe;
            border-left: 5px solid #004a9f;
            padding: 1.2rem 1.6rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-link-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
        }
        .inline-link-list li::before {
            content: "⚽ ";
            font-size: 0.9rem;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        h1,
        h2,
        h3,
        h4 {
            scroll-margin-top: 1.2rem;
        }
