        *,
        *::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;
            line-height: 1.75;
            color: #1a1a2e;
            background: #fafaf9;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #0b6e4f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #073b2b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0b2b1e;
            margin-top: 0;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.4rem;
            border-left: 5px solid #f4a300;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            color: #1e4a3a;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.2rem;
            color: #2d6a52;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d2d3a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        strong,
        b {
            color: #0b2b1e;
        }
        em {
            color: #2d6a52;
        }
        .site-header {
            background: linear-gradient(135deg, #0b2b1e 0%, #1a4a3a 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;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f4a300;
            letter-spacing: -0.03em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffb82e;
        }
        .my-logo i {
            margin-right: 0.3rem;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #f0f7f4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(244, 163, 0, 0.25);
            color: #f4a300;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #f0f4f2;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce6e0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a8f86;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #0b6e4f;
        }
        .breadcrumb .active {
            color: #4a5e55;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0b2b1e 0%, #1e4a3a 50%, #2d6a52 100%);
            color: #fff;
            padding: 2.8rem 0 2.4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -2rem;
            bottom: -2rem;
            font-size: 16rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            color: #d4e8df;
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0.6rem auto 0;
        }
        .hero .last-updated {
            display: inline-block;
            margin-top: 0.8rem;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #cde0d7;
        }
        .hero .last-updated i {
            margin-right: 0.4rem;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            border-bottom: 1px solid #e6ede9;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #dce6e0;
        }
        .search-form input {
            flex: 1;
            border: none;
            padding: 0.9rem 1.5rem;
            font-size: 1rem;
            outline: none;
            background: #fafaf9;
            min-width: 0;
        }
        .search-form button {
            background: #0b6e4f;
            color: #fff;
            border: none;
            padding: 0.9rem 1.8rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #073b2b;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.4rem;
            padding: 2.4rem 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .info-box {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef3f0;
        }
        .info-box h3 {
            margin-top: 0;
            color: #0b2b1e;
        }
        .info-box.highlight {
            border-left: 5px solid #f4a300;
            background: #fefcf5;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef3f0;
        }
        th {
            background: #0b2b1e;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f6faf8;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #f0f4f2;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #4a5e55;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.6rem 0;
        }
        .stat-item {
            background: #fff;
            border-radius: 12px;
            padding: 1.2rem 0.8rem;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef3f0;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #0b6e4f;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5a6e65;
            font-weight: 500;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            margin-top: 2rem;
            border: 1px solid #eef3f0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1a2e26;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #dce6e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
            background: #fafaf9;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #0b6e4f;
            outline: none;
            box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn-primary {
            background: #0b6e4f;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: #073b2b;
            transform: translateY(-1px);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #dce6e0;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f4a300;
            transform: scale(1.1);
        }
        .rating-stars.active i.active {
            color: #f4a300;
        }
        .sidebar .widget {
            background: #fff;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            margin-bottom: 1.6rem;
            border: 1px solid #eef3f0;
        }
        .sidebar .widget h4 {
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #f4a300;
            padding-bottom: 0.4rem;
            margin-bottom: 0.8rem;
        }
        .sidebar .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .widget li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f4f2;
            margin: 0;
        }
        .sidebar .widget li:last-child {
            border-bottom: none;
        }
        .sidebar .widget a {
            color: #0b6e4f;
            font-weight: 500;
            display: block;
            padding: 0.2rem 0;
        }
        .sidebar .widget a:hover {
            color: #073b2b;
            padding-left: 0.3rem;
        }
        .sidebar .widget a i {
            margin-right: 0.5rem;
            width: 1.2rem;
            color: #f4a300;
        }
        friend-link {
            display: block;
            background: #0b2b1e;
            color: #e0ebe4;
            padding: 1.6rem 0;
            margin-top: 2rem;
            border-top: 4px solid #f4a300;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #f4a300;
            font-weight: 500;
            padding: 0.2rem 0.8rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(244, 163, 0, 0.15);
            text-decoration: none;
            color: #ffb82e;
        }
        .site-footer {
            background: #0a1a14;
            color: #b0c9bd;
            padding: 2rem 0 1.4rem;
            font-size: 0.9rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .site-footer .copyright {
            color: #7a9f8e;
        }
        .site-footer .copyright i {
            margin-right: 0.3rem;
            color: #f4a300;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 0.6rem 0.8rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-form input {
                border-radius: 16px 16px 0 0;
            }
            .search-form button {
                border-radius: 0 0 16px 16px;
                justify-content: center;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .info-box {
                padding: 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .stat-item .num {
                font-size: 1.5rem;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        .emoji-big {
            font-size: 1.4em;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: #eef3f0;
            color: #0b2b1e;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .flex {
            display: flex;
            align-items: center;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
