        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f0f4f0;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0f6b3a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b8860b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.2em;
            margin-bottom: 0.6em;
            color: #0f3b1f;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #b8860b;
            display: inline-block;
            padding-bottom: 0.2em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #0f6b3a;
            padding-left: 0.7rem;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e5a2e;
        }
        h4 {
            font-size: 1.15rem;
            color: #2a6f3a;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0a3d1a 0%, #146b30 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9e27a, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 160, 23, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            background: #fff;
            color: #0a3d1a;
            padding: 0.3rem;
            border-radius: 50%;
            font-size: 1.2rem;
            -webkit-text-fill-color: #0a3d1a;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 1px;
            -webkit-text-fill-color: #d4d4d4;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.5rem;
            align-items: center;
        }
        .main-nav a {
            color: #eaf7ea;
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: rgba(255, 255, 255, 0.15);
            color: #f9e27a;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #f5a623;
            color: #0a3d1a;
        }
        .main-nav a i {
            margin-right: 0.3rem;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #e8efe8;
            padding: 0.5rem 0;
            border-bottom: 1px solid #c8dcc8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #5a7a5a;
            margin-right: 0.5rem;
        }
        .breadcrumb a {
            color: #0f6b3a;
        }
        .breadcrumb .current {
            color: #3a5a3a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0d4a22 0%, #1a6e3a 50%, #2d8a4e 100%);
            color: #fff;
            padding: 2.5rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            font-size: 16rem;
            position: absolute;
            right: -2rem;
            bottom: -3rem;
            opacity: 0.08;
            pointer-events: none;
            transform: rotate(-12deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            border: none;
            color: #fff;
            margin-top: 0;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0.8rem auto 0;
            opacity: 0.92;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-top: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero .meta-badge i {
            margin-right: 0.4rem;
            color: #f9e27a;
        }
        .search-section {
            background: #fff;
            padding: 1.8rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            max-width: 680px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #c8dcc8;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9fbf9;
            transition: 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #0f6b3a;
            outline: none;
            box-shadow: 0 0 0 4px rgba(15, 107, 58, 0.12);
        }
        .search-form button {
            background: #0f6b3a;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .legend-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .legend-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s, box-shadow 0.3s;
            padding: 1.5rem;
            border: 1px solid #e2ede2;
        }
        .legend-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            border-color: #b8860b40;
        }
        .legend-card .card-img {
            border-radius: 14px;
            background: #eaf3ea;
            aspect-ratio: 16/9;
            object-fit: cover;
            width: 100%;
            margin-bottom: 1rem;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 225" fill="%23b8d4b8"><rect width="400" height="225"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-size="40" fill="%233a6a3a">⚽</text></svg>');
            background-size: cover;
        }
        .legend-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .legend-card .role {
            color: #5a7a5a;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .legend-card .stats {
            display: flex;
            gap: 1.2rem;
            margin: 0.8rem 0;
            font-size: 0.9rem;
            color: #2a4a2a;
        }
        .legend-card .stats span {
            background: #eaf3ea;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
        }
        .legend-card p {
            font-size: 0.95rem;
            color: #2e3e2e;
        }
        .featured-media {
            margin: 2.5rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
            background: #fff;
            padding: 1rem;
            text-align: center;
        }
        .featured-media img {
            border-radius: 14px;
            max-height: 520px;
            object-fit: cover;
            width: 100%;
        }
        .featured-media figcaption {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            color: #4a6a4a;
        }
        .stats-table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .stats-table th {
            background: #0a3d1a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .stats-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #e2ede2;
        }
        .stats-table tr:hover td {
            background: #f4faf4;
        }
        .feedback-section {
            background: #fff;
            border-radius: 24px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-section input,
        .feedback-section textarea,
        .feedback-section select {
            padding: 0.7rem 1rem;
            border: 2px solid #d0e0d0;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fafcfa;
            transition: 0.2s;
        }
        .feedback-section input:focus,
        .feedback-section textarea:focus,
        .feedback-section select:focus {
            border-color: #0f6b3a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(15, 107, 58, 0.1);
        }
        .feedback-section textarea {
            resize: vertical;
            min-height: 80px;
        }
        .feedback-section .btn {
            background: #0f6b3a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            align-self: flex-start;
        }
        .feedback-section .btn:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.25rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #c8dcc8;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .related-links {
            background: #e8f0e8;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
        }
        .related-links ul {
            columns: 2 260px;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0 0;
        }
        .related-links li {
            padding: 0.35rem 0;
            break-inside: avoid;
        }
        .related-links li::before {
            content: "⚡";
            margin-right: 0.4rem;
            font-size: 0.8rem;
        }
        .related-links a {
            font-weight: 500;
        }
        .site-footer {
            background: #0a2e14;
            color: #d0e0d0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 700px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f9e27a;
            margin-top: 0;
        }
        .footer-inner a {
            color: #b8d4b8;
        }
        .footer-inner a:hover {
            color: #f9e27a;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .friend-link li::before {
            content: "🔗";
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }
        .copyright {
            border-top: 1px solid #1a4a2a;
            margin-top: 2rem;
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8aaa8a;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.2rem;
            }
            .main-nav.show {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                white-space: normal;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .legend-grid {
                grid-template-columns: 1fr;
            }
            .related-links ul {
                columns: 1;
            }
            .feedback-section {
                padding: 1.2rem;
            }
        }
        @media (min-width: 769px) {
            .main-nav {
                display: flex !important;
            }
        }
        .text-muted {
            color: #4a6a4a;
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: #eaf3ea;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #1a5a2a;
        }
        .last-updated {
            background: #fff;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            font-size: 0.85rem;
            border: 1px solid #c8dcc8;
            color: #3a5a3a;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #0f6b3a;
        }
