* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            font-size: 17px;
        }
        a {
            color: #1a6b3c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f3b1e 0%, #1a6b3c 100%);
            padding: 16px 0;
            border-bottom: 4px solid #d4a017;
            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: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f9faf8;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #d4a017;
            font-size: 2rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f9faf8;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #c8e6c9;
            display: block;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 2rem;
            color: #f9faf8;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8f5e9;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(212, 160, 23, 0.2);
            color: #ffd54f;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #e8f0e4;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #cfdfc9;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6b8f6b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1a6b3c;
        }
        .breadcrumb .current {
            color: #4a6a4a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a4a2a 0%, #2d7a4a 100%);
            color: #fff;
            padding: 48px 0 40px;
            margin-bottom: 40px;
            border-radius: 0 0 60px 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚽";
            position: absolute;
            right: -30px;
            bottom: -30px;
            font-size: 16rem;
            opacity: 0.06;
            transform: rotate(12deg);
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.2;
            max-width: 800px;
            letter-spacing: -1px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .hero h1 i {
            color: #ffd54f;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 680px;
            margin-top: 16px;
            color: #d9f0dd;
            font-weight: 400;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(6px);
            padding: 8px 20px;
            border-radius: 60px;
            font-size: 0.85rem;
            color: #e8f5e9;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 20px;
        }
        section {
            margin-bottom: 56px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0f3b1e;
            border-left: 6px solid #d4a017;
            padding-left: 20px;
            margin-bottom: 24px;
            margin-top: 48px;
        }
        h2 i {
            color: #1a6b3c;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a5a2a;
            margin-top: 36px;
            margin-bottom: 14px;
        }
        h3 i {
            color: #d4a017;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2d4a2d;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            color: #2d3a2d;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 28px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 24px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #e3ede0;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
        }
        .stat-card .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: #d4a017;
            line-height: 1;
        }
        .stat-card h4 {
            margin-top: 4px;
            margin-bottom: 6px;
        }
        .highlight-box {
            background: linear-gradient(145deg, #f0f7ed, #e4efe0);
            border-radius: 20px;
            padding: 28px 30px;
            border-left: 6px solid #d4a017;
            margin: 28px 0;
        }
        .highlight-box i {
            color: #d4a017;
            font-size: 1.6rem;
            margin-right: 12px;
        }
        .interview-block {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e3ede0;
            margin: 24px 0;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #1a4a2a;
            border-left: 4px solid #d4a017;
            padding-left: 20px;
            margin: 16px 0;
        }
        .btn {
            display: inline-block;
            background: #1a6b3c;
            color: #fff;
            padding: 10px 28px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #d4a017;
            color: #0f3b1e;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
            text-decoration: none;
        }
        .btn i {
            margin-right: 8px;
        }
        .search-section {
            background: #e8f0e4;
            border-radius: 28px;
            padding: 36px 32px;
            margin: 36px 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 60px;
            border: 2px solid #c0d6b8;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .search-form button {
            background: #1a6b3c;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #d4a017;
            color: #0f3b1e;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            border-radius: 24px;
            padding: 28px 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e3ede0;
            margin: 24px 0;
        }
        .comment-box textarea,
        .rating-box textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 16px;
            border: 2px solid #d0e0ca;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: border 0.2s;
        }
        .comment-box textarea:focus,
        .rating-box textarea:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .comment-box input,
        .rating-box input {
            width: 100%;
            padding: 12px 18px;
            border-radius: 60px;
            border: 2px solid #d0e0ca;
            font-size: 1rem;
            margin-bottom: 12px;
            transition: border 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #1a6b3c;
            outline: none;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin: 10px 0 16px;
        }
        .star-rating i {
            transition: color 0.15s ease, transform 0.15s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #d4a017;
            transform: scale(1.1);
        }
        .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .form-row input {
            flex: 1;
            min-width: 180px;
        }
        .links-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        .links-list li {
            padding: 6px 0;
        }
        .links-list a {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .links-list a i {
            color: #d4a017;
            font-size: 0.85rem;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
        }
        .featured-image figcaption {
            padding: 12px 6px;
            font-size: 0.9rem;
            color: #4a6a4a;
            font-style: italic;
        }
        .site-footer {
            background: #0f3b1e;
            color: #d9f0dd;
            padding: 44px 0 24px;
            margin-top: 60px;
            border-top: 6px solid #d4a017;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 32px;
        }
        .site-footer h4 {
            color: #ffd54f;
            font-size: 1.2rem;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: #b8d9b8;
        }
        .site-footer a:hover {
            color: #ffd54f;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 20px 24px;
            margin: 16px 0 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        friend-link li a {
            font-weight: 500;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            font-size: 0.9rem;
            color: #90b890;
            text-align: center;
        }
        .copyright strong {
            color: #d9f0dd;
        }
        @media (max-width: 900px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f3b1e;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 32px 0 28px;
                border-radius: 0 0 40px 40px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 14px;
            }
            .stat-card .stat-number {
                font-size: 2rem;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #4a6a4a;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8f0e4;
            padding: 6px 18px;
            border-radius: 60px;
            font-size: 0.85rem;
            color: #1a5a2a;
        }
        .last-updated i {
            color: #d4a017;
        }
