        *,
        *::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: #f4f7fa;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #0f5e3b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #c79a2e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0b2b1d;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #0f5e3b;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #1a4a2e;
        }
        h4 {
            font-size: 1.1rem;
            color: #2a5a3e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0b2b1d 0%, #1a4a2e 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d742, #f0b800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(245, 215, 66, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5d742;
            font-size: 1.8rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            transition: transform 0.2s;
        }
        .nav-toggle:hover {
            transform: scale(1.1);
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #f5d742;
            outline-offset: 4px;
            border-radius: 4px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8f0e8;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.25s ease;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(245, 215, 66, 0.2);
            color: #f5d742;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #f5d742;
            color: #0b2b1d;
        }
        .breadcrumb {
            background: #e8f0e8;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d0ddd0;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb span {
            color: #3a6a4e;
        }
        .breadcrumb a {
            color: #0f5e3b;
        }
        .breadcrumb .sep {
            color: #7a9a8a;
        }
        .hero {
            background: linear-gradient(135deg, #0b2b1d 0%, #1a6a3e 70%, #2a8a5e 100%);
            color: #fff;
            padding: 2.8rem 0 2.4rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽🌲";
            font-size: 12rem;
            position: absolute;
            right: -2rem;
            bottom: -3rem;
            opacity: 0.08;
            pointer-events: none;
            transform: rotate(-10deg);
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            margin-top: 0;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            opacity: 0.92;
            margin-bottom: 0.8rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            font-size: 0.95rem;
            margin-top: 1rem;
            color: #d4e8d4;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #f5d742;
        }
        .last-updated {
            font-weight: 600;
            background: rgba(245, 215, 66, 0.15);
            padding: 0.2rem 1rem;
            border-radius: 30px;
            display: inline-block;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.4rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 700;
            color: #0b2b1d;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
        }
        .search-form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.6rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d0ddd0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #0f5e3b;
        }
        .search-form button {
            background: #0f5e3b;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #c79a2e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .main-content {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.6rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 1.5rem 1.6rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.15rem;
            border-bottom: 2px solid #e8f0e8;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f5f0;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .sidebar-card a:hover {
            color: #c79a2e;
        }
        .feature-image-wrapper {
            margin: 1.6rem 0 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        .feature-image-wrapper img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image-wrapper .img-caption {
            background: rgba(11, 43, 29, 0.85);
            color: #e8f0e8;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            margin: 1.6rem 0 2rem;
        }
        .stat-card {
            background: #f0f7f0;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            border-left: 4px solid #0f5e3b;
            transition: transform 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-3px);
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #0f5e3b;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #3a6a4e;
            font-weight: 500;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8f0e8;
        }
        .comment-box,
        .rating-box {
            background: #f8fbf8;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box textarea,
        .rating-box textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #d0ddd0;
            border-radius: 14px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .comment-box textarea:focus,
        .rating-box textarea:focus {
            outline: none;
            border-color: #0f5e3b;
        }
        .comment-box input,
        .rating-box input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0ddd0;
            border-radius: 40px;
            font-size: 0.95rem;
            margin: 0.5rem 0;
            transition: border 0.3s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #0f5e3b;
            outline: none;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.6rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d0ddd0;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b800;
            transform: scale(1.1);
        }
        .btn-submit {
            background: #0f5e3b;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 0.4rem;
        }
        .btn-submit:hover {
            background: #c79a2e;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            background: #0b2b1d;
            color: #e8f0e8;
            padding: 1.8rem 0;
            margin-top: 2rem;
            border-radius: 40px 40px 0 0;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            justify-content: center;
        }
        friend-link a {
            color: #f5d742;
            font-weight: 500;
            padding: 0.3rem 1rem;
            border: 1px solid rgba(245, 215, 66, 0.3);
            border-radius: 30px;
            transition: all 0.25s;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(245, 215, 66, 0.15);
            color: #fff;
            text-decoration: none;
            border-color: #f5d742;
        }
        friend-link .fl-title {
            width: 100%;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: #f5d742;
            margin-bottom: 0.4rem;
        }
        .site-footer {
            background: #071a10;
            color: #b0c8b8;
            padding: 1.6rem 0;
            text-align: center;
            font-size: 0.85rem;
        }
        .site-footer a {
            color: #c9dcc9;
        }
        .site-footer a:hover {
            color: #f5d742;
        }
        .site-footer .copyright {
            margin-top: 0.4rem;
            color: #7a9a8a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.4rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-radius: 10px;
                text-align: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero::after {
                font-size: 6rem;
                right: -1rem;
                bottom: -1.5rem;
            }
            .main-content {
                padding: 1.4rem 1.2rem;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .breadcrumb-inner {
                font-size: 0.75rem;
            }
            .feature-image-wrapper .img-caption {
                position: relative;
                background: #0b2b1d;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .stat-card .number {
                font-size: 1.4rem;
            }
            .hero {
                padding: 1.6rem 0 1.6rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .schema-hidden {
            display: none;
        }
        :focus-visible {
            outline: 2px solid #0f5e3b;
            outline-offset: 2px;
            border-radius: 4px;
        }
