        *,
        *::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: #f5f7fb;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0d4a2a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0b1e2e;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #1a6b3c;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #1a6b3c;
            padding-left: 0.8rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            color: #1a4a2e;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.2rem 1.5rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            margin: 1rem 0 2rem;
        }
        .badge {
            background: #1a6b3c;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.2rem 0.7rem;
            border-radius: 30px;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e2e8f0;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #0b1e2e;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #1a6b3c;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #1a6b3c;
        }
        .my-logo span {
            font-weight: 300;
            color: #4a6a5a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #e8edf2;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem 1.2rem;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .main-nav a:hover {
            border-bottom-color: #1a6b3c;
            text-decoration: none;
        }
        .main-nav a.active {
            border-bottom-color: #1a6b3c;
            color: #1a6b3c;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.85rem;
            color: #4a5a6a;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #8a9aaa;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #2a3a4a;
            font-weight: 500;
        }
        .search-box {
            display: flex;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #d0d8e0;
            background: #fff;
            transition: box-shadow 0.2s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.15);
            border-color: #1a6b3c;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            outline: none;
            background: transparent;
        }
        .search-box button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0 1.4rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-box button:hover {
            background: #0d4a2a;
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2.5rem;
            background: #f0f4f8;
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin: 2rem 0 1.5rem;
            align-items: center;
        }
        .rating-area {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.4rem;
            color: #e0b300;
            cursor: pointer;
        }
        .rating-area .stars i {
            transition: transform 0.15s;
        }
        .rating-area .stars i:hover {
            transform: scale(1.25);
        }
        .rating-area .stars i.active {
            color: #e0a800;
            text-shadow: 0 0 6px rgba(224, 168, 0, 0.4);
        }
        .rating-area button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-area button:hover {
            background: #0d4a2a;
        }
        .comment-area {
            flex: 1;
            min-width: 200px;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .comment-area input {
            flex: 1;
            min-width: 140px;
            border: 1px solid #d0d8e0;
            border-radius: 30px;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            outline: none;
            background: #fff;
        }
        .comment-area input:focus {
            border-color: #1a6b3c;
        }
        .comment-area button {
            background: #2a4a6a;
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-area button:hover {
            background: #1a3a5a;
        }
        .hero-img-wrap {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            background: #e8edf2;
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
            color: #fff;
            padding: 1.2rem 1.5rem 0.8rem;
            font-size: 0.9rem;
        }
        .related-links {
            background: #f8fafc;
            border-left: 4px solid #1a6b3c;
            padding: 0.8rem 1.2rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .related-links a {
            font-weight: 500;
        }
        .site-footer {
            border-top: 2px solid #e2e8f0;
            padding: 1.8rem 0 1.2rem;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #3a4a5a;
        }
        .site-footer .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.2rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            background: #f0f4f8;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            margin-bottom: 1.2rem;
        }
        .friend-link a {
            font-weight: 500;
        }
        .friend-link a::before {
            content: "⚽ ";
        }
        .copyright {
            opacity: 0.8;
            font-size: 0.82rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0.8rem 1rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .site-header {
                padding-top: 0.8rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
                border-top: 1px solid #e2e8f0;
                margin-top: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.4rem 0;
                width: 100%;
                border-bottom: 1px solid #edf2f7;
            }
            .interaction-panel {
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
            }
            .rating-area {
                justify-content: center;
            }
            .comment-area input {
                min-width: 100px;
            }
            .hero-img-wrap .img-caption {
                font-size: 0.75rem;
                padding: 0.8rem 1rem;
            }
            .related-links {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .schema-hidden {
            display: none;
        }
        .update-badge {
            display: inline-block;
            background: #e8f0ec;
            color: #1a6b3c;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
        }
        .highlight-box {
            background: #f9fdfb;
            border: 1px solid #c8e0d4;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(26, 107, 60, 0.06);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-card {
            background: #f0f4f8;
            border-radius: 12px;
            padding: 0.8rem 1rem;
            text-align: center;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a6b3c;
        }
        .stat-card .label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #4a5a6a;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 600px) {
            .two-col {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
