        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            background: #fafaf8;
            color: #1e1e1e;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: underline;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7b341e;
            text-decoration: none;
        }
        a:focus-visible {
            outline: 2px solid #b45309;
            outline-offset: 2px;
            border-radius: 2px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0c1e2f 0%, #1a3a4a 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7c948, #e89b2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            line-height: 1.2;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7c948;
            font-size: 1.4rem;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #aac8d9;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.4rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #f7c948;
            color: #f7c948;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #f7c948;
            outline-offset: 2px;
        }
        .primary-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e8eef2;
            text-decoration: none;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: rgba(247, 201, 72, 0.18);
            color: #f7c948;
            outline: none;
        }
        .primary-nav a.active {
            background: rgba(247, 201, 72, 0.22);
            color: #f7c948;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2ddd6;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #888;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5a4a3a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb [aria-current="page"] {
            color: #1e1e1e;
            font-weight: 600;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(145deg, #f9f5ef, #fffcf7);
            border-radius: 28px;
            padding: 2.5rem 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6de;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            bottom: -20px;
            right: -10px;
            font-size: 10rem;
            opacity: 0.04;
            pointer-events: none;
            transform: rotate(12deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0c1e2f;
            margin-bottom: 1rem;
            max-width: 850px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #b45309, #e89b2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: #3d4f5c;
            max-width: 780px;
            margin-bottom: 1.2rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2.5rem;
            font-size: 0.9rem;
            color: #5f6b76;
            padding-top: 0.5rem;
            border-top: 1px solid #e8e1d8;
        }
        .hero-meta i {
            color: #b45309;
            margin-right: 0.4rem;
        }
        .last-updated {
            font-weight: 600;
        }
        section {
            margin-bottom: 3.5rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0c1e2f;
            margin: 2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #f0c040;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e3a4a;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2d4a5a;
            margin: 1.4rem 0 0.5rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #edeae4;
            margin-bottom: 1.8rem;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .insight-box {
            background: #f4efe8;
            border-left: 5px solid #b45309;
            padding: 1.2rem 1.5rem;
            border-radius: 0 16px 16px 0;
            margin: 1.5rem 0;
        }
        .insight-box strong {
            color: #7b341e;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .featured-image-wrap {
            margin: 2rem 0 2.5rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            background: #f0ede8;
        }
        .featured-image-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-image-wrap:hover img {
            transform: scale(1.01);
        }
        .featured-image-wrap figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #4a5a66;
            background: #fff;
            border-top: 1px solid #e8e1d8;
        }
        .data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .data-item {
            background: #f9f6f1;
            padding: 1.2rem 1rem;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #e6dfd6;
        }
        .data-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b45309;
            line-height: 1.2;
        }
        .data-item .label {
            font-size: 0.85rem;
            color: #4a5a66;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 14px;
            border: 1px solid #e6dfd6;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #fff;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #edeae4;
        }
        th {
            background: #0c1e2f;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f8f4ef;
        }
        .link-inline-list {
            display: inline;
            font-weight: 500;
        }
        .form-section {
            background: #fff;
            border-radius: 24px;
            padding: 2rem 2rem 2.5rem;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #eae5de;
            margin-top: 1.5rem;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
            color: #1e3a4a;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e2dbd2;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fcfaf8;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b45309;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #b45309, #d9772a);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover,
        .btn:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(180, 83, 9, 0.25);
        }
        .btn:focus-visible {
            outline: 2px solid #b45309;
            outline-offset: 3px;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #d4c9bc;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            cursor: pointer;
            color: #d4c9bc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        .site-footer {
            background: #0c1e2f;
            color: #cddce5;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #e8c87a;
        }
        .site-footer a:hover {
            color: #f7d98a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f7c948;
            margin: 0 0 0.8rem;
            font-size: 1rem;
            font-weight: 600;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid li {
            margin-bottom: 0.3rem;
        }
        .footer-grid a {
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-grid a:hover {
            text-decoration: underline;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            font-size: 0.85rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            font-size: 0.82rem;
            text-align: center;
            color: #8aa0ae;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0c1e2f;
                padding: 1rem 0.5rem;
                border-radius: 0 0 20px 20px;
                margin-top: 0.5rem;
                gap: 0.2rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
                white-space: normal;
            }
            .hero {
                padding: 1.8rem 1.2rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .form-section {
                padding: 1.5rem 1.2rem;
            }
            .data-grid {
                grid-template-columns: 1fr 1fr;
            }
            .table-wrap {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .data-grid {
                grid-template-columns: 1fr;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.4rem;
            }
            .wrapper {
                padding: 0 0.6rem;
            }
            .content-card {
                padding: 1rem 0.9rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            padding: 0.6rem 1.4rem;
            background: #b45309;
            color: #fff;
            border-radius: 0 0 8px 8px;
            z-index: 200;
            font-weight: 600;
            text-decoration: none;
        }
        .skip-link:focus {
            top: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }
