        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1e6f3f;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0f4a2a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            margin-top: 1.2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 640px) {
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
                margin-top: 0.8rem;
                margin-bottom: 1.2rem;
            }
            body {
                padding: 0 0.5rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e6ede6;
            margin-bottom: 0.5rem;
            position: relative;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #0f4a2a, #1e8f4f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            line-height: 1.2;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #4a6b4a;
            color: #4a6b4a;
            letter-spacing: 0.3px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e2a1e;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #e0efe0;
            color: #0f4a2a;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #1e6f3f;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #1e2a1e;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e0efe0;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 1rem;
                gap: 0.3rem;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 12px;
            }
            #nav-toggle:checked+.hamburger+.main-nav {
                display: flex;
            }
            #nav-toggle:checked+.hamburger .fa-bars::before {
                content: '\f00d';
            }
        }
        @media (min-width: 769px) {
            #nav-toggle {
                display: none !important;
            }
            .main-nav {
                display: flex !important;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            padding: 0.6rem 0 1rem;
            color: #4a6b4a;
        }
        .breadcrumb a {
            color: #1e6f3f;
        }
        .breadcrumb span {
            color: #6a8a6a;
        }
        .breadcrumb .sep {
            color: #b0c8b0;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 1.2rem 0 0.8rem;
            color: #0a2a0a;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #d4e4d4;
            color: #0f3a1f;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: #1a4a2a;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem 0;
            color: #2a5a3a;
        }
        p {
            margin-bottom: 1.1rem;
            color: #1e2e1e;
        }
        .lead {
            font-size: 1.2rem;
            color: #2a4a2a;
            font-weight: 400;
            line-height: 1.8;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a8a6a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .last-updated i {
            color: #1e8f4f;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .lead {
                font-size: 1.05rem;
            }
        }
        .highlight-box {
            background: #f0f8f0;
            border-left: 5px solid #1e8f4f;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .stat-badge {
            display: inline-block;
            background: #1e6f3f;
            color: #fff;
            padding: 0.1rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem;
            font-size: 0.85rem;
            color: #4a6a4a;
            background: #f4faf4;
            text-align: center;
            font-style: italic;
        }
        .related-links {
            background: #f8fbf8;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1.8rem 0;
        }
        .related-links h4 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
        }
        .related-links li::before {
            content: '🏏 ';
        }
        .related-links a {
            font-weight: 500;
        }
        @media (max-width: 640px) {
            .related-links ul {
                grid-template-columns: 1fr;
            }
        }
        .search-section {
            background: #edf5ed;
            padding: 1.8rem 2rem;
            border-radius: 20px;
            margin: 2.5rem 0 1.5rem;
        }
        .search-section form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-section input[type="search"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #c8dcc8;
            border-radius: 60px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-section input[type="search"]:focus {
            border-color: #1e8f4f;
        }
        .search-section button {
            background: #1e6f3f;
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #0f4a2a;
            transform: scale(1.02);
        }
        .comments-section {
            margin: 2.5rem 0;
            padding: 1.8rem 2rem;
            background: #fafcfa;
            border-radius: 20px;
            border: 1px solid #e0ece0;
        }
        .comments-section h2 i {
            color: #1e8f4f;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1.2rem;
            border: 2px solid #d4e4d4;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #1e8f4f;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .comment-form button {
            background: #1e6f3f;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            justify-self: start;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover {
            background: #0f4a2a;
            transform: scale(1.02);
        }
        @media (max-width: 640px) {
            .comment-form .form-row {
                grid-template-columns: 1fr;
            }
            .comments-section {
                padding: 1.2rem 1.2rem;
            }
            .search-section {
                padding: 1.2rem 1.2rem;
            }
        }
        .rating-section {
            margin: 2rem 0;
            padding: 1.8rem 2rem;
            background: #f4faf4;
            border-radius: 20px;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.8rem 0 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #d0e0d0;
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5b342;
        }
        .rating-stars label:hover {
            transform: scale(1.15);
        }
        .rating-section button {
            background: #1e6f3f;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .rating-section button:hover {
            background: #0f4a2a;
        }
        .rating-display {
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #3a5a3a;
        }
        @media (max-width: 640px) {
            .rating-section {
                padding: 1.2rem 1.2rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e0ece0;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            margin-top: 0;
            color: #0f3a1f;
        }
        .site-footer a {
            color: #1e6f3f;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            padding: 1rem 1.2rem;
            background: #f0f8f0;
            border-radius: 12px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.4rem;
            font-size: 0.85rem;
            color: #5a7a5a;
            border-top: 1px solid #e0ece0;
            margin-top: 1.5rem;
        }
        .copyright i {
            color: #1e8f4f;
        }
        @media (max-width: 768px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1e6f3f;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: background 0.2s, transform 0.2s;
            z-index: 99;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #0f4a2a;
            transform: translateY(-3px);
        }
        @media (max-width: 640px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
        .anchor-offset {
            scroll-margin-top: 1.5rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table thead {
            background: #1e6f3f;
            color: #fff;
        }
        .data-table th,
        .data-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e6ede6;
        }
        .data-table tbody tr:hover {
            background: #f0f8f0;
        }
        @media (max-width: 640px) {
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        blockquote {
            background: #f4faf4;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 5px solid #1e8f4f;
            margin: 1.5rem 0;
            font-style: italic;
            color: #2a4a2a;
        }
        blockquote footer {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            font-style: normal;
            color: #4a6a4a;
        }
