        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #004d99;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ff6b00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #0b1a2e;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 0.5rem;
            margin-top: 0.6rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #004d99;
            padding-left: 1rem;
            background: linear-gradient(to right, #e8f0fe, transparent);
        }
        h3 {
            font-size: 1.5rem;
            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 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #001b3a 0%, #002b5c 100%);
            color: #fff;
            padding: 0.6rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffd700;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.3rem 1rem 0.3rem 0.8rem;
            border-radius: 40px;
            transition: background 0.3s;
            text-decoration: none;
        }
        .my-logo:hover {
            background: rgba(255, 215, 0, 0.15);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            color: #ffd700;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 300;
            color: #b8d4f0;
            margin-left: 4px;
            display: none;
        }
        @media (min-width: 640px) {
            .my-logo span {
                display: inline;
            }
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .main-nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #002b5c;
            padding: 1rem 1.4rem;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            gap: 0.4rem;
            max-height: 80vh;
            overflow-y: auto;
        }
        .main-nav.open {
            display: flex;
        }
        .main-nav a {
            color: #e0edff;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
        }
        .main-nav a:hover {
            background: #ffd700;
            color: #001b3a;
            text-decoration: none;
        }
        .hamburger {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hamburger:hover {
            background: #ffd700;
            color: #001b3a;
            transform: scale(1.05);
        }
        @media (min-width: 900px) {
            .hamburger {
                display: none;
            }
            .main-nav {
                display: flex !important;
                flex-direction: row;
                position: static;
                background: transparent;
                box-shadow: none;
                padding: 0;
                max-height: none;
                overflow: visible;
                gap: 0.2rem;
            }
            .main-nav a {
                padding: 0.4rem 1rem;
                font-size: 0.95rem;
                border-radius: 30px;
            }
            .main-nav a:hover {
                background: rgba(255, 215, 0, 0.2);
                color: #ffd700;
            }
        }
        .breadcrumb {
            background: #e8f0fe;
            padding: 0.6rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0dce8;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 0 0 12px 12px;
        }
        .breadcrumb a {
            color: #004d99;
        }
        .breadcrumb a:hover {
            color: #ff6b00;
        }
        .breadcrumb .sep {
            margin: 0 6px;
            color: #7a8a9e;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #001b3a, #003366);
            color: #fff;
            padding: 2.4rem 20px;
            border-radius: 0 0 40px 40px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .hero h1 {
            color: #ffd700;
            border-bottom: none;
            margin-top: 0;
            font-size: 2.6rem;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0.8rem auto 0;
            color: #c8dfff;
        }
        .hero .badge {
            display: inline-block;
            background: #ffd700;
            color: #001b3a;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 0.8rem;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.6rem 1.8rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.4rem;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d0dce8;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #f9fcff;
        }
        .search-form input[type="text"]:focus {
            border-color: #004d99;
            box-shadow: 0 0 0 4px rgba(0, 77, 153, 0.1);
        }
        .search-form button {
            background: #004d99;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #003366;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.4rem;
        }
        @media (min-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 1.8rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.4rem;
            margin-top: 0;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #edf2f7;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .sidebar ul li a::before {
            content: "⚽";
            font-size: 1rem;
        }
        .featured-image {
            margin: 1.6rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            background: #eef3f9;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #4a5a6e;
            background: #f9fcff;
            border-top: 1px solid #e0e8f0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #001b3a;
            color: #ffd700;
            padding: 0.8rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 0.8rem;
            border-bottom: 1px solid #e8eef4;
        }
        .data-table tr:nth-child(even) {
            background: #f8fbfe;
        }
        .data-table tr:hover td {
            background: #eef4fa;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0 1.6rem;
        }
        @media (min-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .card-interact {
            background: #f9fcff;
            border-radius: 20px;
            padding: 1.6rem 1.6rem 2rem;
            border: 1px solid #e0e8f0;
            transition: box-shadow 0.3s;
        }
        .card-interact:hover {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .card-interact h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }
        .card-interact textarea,
        .card-interact input[type="number"],
        .card-interact input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0dce8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
            background: #fff;
            margin-bottom: 0.8rem;
        }
        .card-interact textarea:focus,
        .card-interact input:focus {
            border-color: #004d99;
            box-shadow: 0 0 0 4px rgba(0, 77, 153, 0.08);
        }
        .card-interact textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-interact .btn-submit {
            background: #004d99;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card-interact .btn-submit:hover {
            background: #003366;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0dce8;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
            transform: scale(1.1);
        }
        .links-section {
            margin: 2rem 0;
            padding: 1.4rem 1.6rem;
            background: #f0f5fb;
            border-radius: 18px;
            border-left: 6px solid #ffd700;
        }
        .links-section h3 {
            margin-top: 0;
        }
        .links-section .link-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem 1.2rem;
        }
        @media (max-width: 540px) {
            .links-section .link-grid {
                grid-template-columns: 1fr;
            }
        }
        .links-section a {
            padding: 0.3rem 0;
            display: inline-block;
            font-weight: 500;
        }
        .site-footer {
            background: #001b3a;
            color: #c8dfff;
            padding: 2.4rem 20px 1.2rem;
            margin-top: 3rem;
            border-radius: 40px 40px 0 0;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.6rem;
        }
        @media (min-width: 700px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-inner h4 {
            color: #ffd700;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b8d4f0;
        }
        .footer-inner a:hover {
            color: #ffd700;
        }
        .footer-inner ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-inner ul li {
            padding: 0.3rem 0;
        }
        .footer-copy {
            text-align: center;
            padding-top: 1.6rem;
            margin-top: 1.6rem;
            border-top: 1px solid #1a3a5c;
            font-size: 0.9rem;
            color: #7a9abd;
        }
        .footer-copy strong {
            color: #ffd700;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 215, 0, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.15);
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 215, 0, 0.18);
            color: #ffd700;
            text-decoration: none;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 1.2rem 1rem;
            }
            .sidebar {
                padding: 1.2rem 1rem;
                position: static;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.5rem;
            }
        }
        @media (min-width: 481px) and (max-width: 859px) {
            .main-content {
                padding: 1.6rem 1.4rem;
            }
            .sidebar {
                padding: 1.4rem 1.2rem;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: #5a6a7e;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 1rem;
            background: #f0f5fb;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            width: fit-content;
        }
        .last-updated i {
            color: #ffd700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdf2d7);
            border-left: 6px solid #ffd700;
            padding: 1.2rem 1.6rem;
            border-radius: 12px;
            margin: 1.4rem 0;
        }
        .highlight-box strong {
            color: #003366;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .tag {
            display: inline-block;
            background: #004d99;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .tag.gold {
            background: #ffd700;
            color: #001b3a;
        }
        .gap-sm {
            height: 0.6rem;
        }
        .gap-md {
            height: 1.2rem;
        }
        .gap-lg {
            height: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .schema-hidden {
            display: none;
        }
