        *,
        *::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, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #e6b800;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #0f2b0f;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
            margin-top: 2.5rem;
            border-bottom: 3px solid #2d7d3a;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
            margin-top: 1.8rem;
            color: #1d5e2a;
        }
        h4 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
            margin-top: 1.2rem;
            color: #2a6b37;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2b0f 0%, #1d5e2a 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fae26b;
            letter-spacing: -0.5px;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #b8d9b8;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e8f5e8;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fae26b;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #e6ede4;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #cbdcc8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.3rem;
            color: #6a8a6a;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #4a6a4a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a3a1a 0%, #2d7d3a 50%, #1a5a2a 100%);
            color: #fff;
            padding: 2.5rem 0 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            font-size: 12rem;
            right: -2rem;
            bottom: -3rem;
            opacity: 0.07;
            transform: rotate(20deg);
        }
        .hero h1 {
            color: #fff;
            font-size: 2.8rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
            margin-bottom: 0.5rem;
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.92;
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(4px);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero .meta-badge i {
            margin-right: 6px;
        }
        .search-section {
            background: #fff;
            padding: 1.2rem 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #cbdcc8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #2d7d3a;
        }
        .search-form button {
            background: #2d7d3a;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0 1.6rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #1d5e2a;
            transform: scale(1.02);
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-body {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e2ede0;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #2d7d3a;
            padding-bottom: 0.3rem;
            margin-bottom: 1rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #ecf3ea;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .featured-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0f6ee;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #3d5a3d;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0 2rem;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1d5e2a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #dce8da;
        }
        .data-table tr:nth-child(even) td {
            background: #f6faf5;
        }
        .data-table tr:hover td {
            background: #edf5ea;
        }
        .rating-area,
        .comment-area {
            background: #f6faf5;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin-top: 2rem;
            border: 1px solid #dce8da;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin: 0.8rem 0 1rem;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #e6b800;
            transform: scale(1.1);
        }
        .rating-form button,
        .comment-form button {
            background: #2d7d3a;
            color: #fff;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #1a5a2a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #cbdcc8;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #2d7d3a;
        }
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #cbdcc8;
            border-radius: 12px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
        }
        .comment-form input:focus {
            border-color: #2d7d3a;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .form-row input {
            flex: 1;
        }
        .site-footer {
            background: #0f2b0f;
            color: #c8dec8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #fae26b;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #2d7d3a;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        .site-footer a {
            color: #b8d9b8;
        }
        .site-footer a:hover {
            color: #fae26b;
        }
        .friend-link {
            display: block;
            background: #1a3a1a;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #2d5a2d;
        }
        .friend-link h4 {
            margin-top: 0;
            color: #fae26b;
            border-bottom: none;
        }
        .friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }
        .friend-link ul li a {
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2d5a2d;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #8aaa8a;
        }
        .copyright a {
            color: #b8d9b8;
        }
        .last-update {
            display: inline-block;
            background: #1d3a1d;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #b8d9b8;
            margin-top: 0.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1d5e2a;
                margin-top: 1rem;
                border-radius: 16px;
                padding: 1rem;
                gap: 0.2rem;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 99;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 1.2rem 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 0.7rem;
                justify-content: center;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.5rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .container {
                padding: 0 12px;
            }
        }
        .highlight {
            background: #fcf3cf;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }
        .tag {
            display: inline-block;
            background: #e6ede4;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #1d5e2a;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 2rem;
            line-height: 1;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #5a7a5a;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #2d7d3a;
            color: #2d7d3a;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: #2d7d3a;
            color: #fff;
        }
