        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f4f7f2;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1b6b3a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #c89f2d;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #0f2b1a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #c89f2d;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #1b6b3a;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #1e4a2e;
        }
        h4 {
            font-size: 1.2rem;
            color: #2d6b42;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2b1a 0%, #1b6b3a 100%);
            padding: 0.6rem 0;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.4rem 0;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f9e27a, #c89f2d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #f9e27a;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8f5e9;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.18);
            color: #f9e27a;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            background: #e9ede6;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            margin: 1.2rem 0 0.8rem;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #1b6b3a;
        }
        .breadcrumb a:hover {
            color: #c89f2d;
        }
        .breadcrumb span {
            color: #4a5a4e;
        }
        .search-wrap {
            background: #e9ede6;
            padding: 1.6rem 1.8rem;
            border-radius: 16px;
            margin: 1.8rem 0 2.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
        }
        .search-wrap form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            width: 100%;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-wrap input[type="text"] {
            flex: 1 1 220px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #c0d0c4;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            min-width: 140px;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #1b6b3a;
            box-shadow: 0 0 0 3px rgba(27, 107, 58, 0.2);
        }
        .search-wrap button {
            background: #1b6b3a;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-wrap button:hover {
            background: #0f2b1a;
            transform: scale(1.02);
        }
        .content-area {
            background: #fff;
            border-radius: 24px;
            padding: 2.2rem 2.5rem;
            margin: 1.5rem 0 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .featured-img {
            border-radius: 18px;
            margin: 1.8rem auto 2.2rem;
            max-width: 100%;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .last-updated {
            font-size: 0.85rem;
            color: #5e6f64;
            background: #f0f4ed;
            display: inline-block;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            margin-bottom: 0.8rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .highlight-box {
            background: #f6f9f4;
            border-left: 6px solid #c89f2d;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #0f2b1a;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
        .inline-link {
            font-weight: 600;
            color: #1b6b3a;
            border-bottom: 1px dotted #8aaa94;
        }
        .inline-link:hover {
            border-bottom: 2px solid #c89f2d;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
        }
        .card-form {
            background: #f6f9f4;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            border: 1px solid #dce6dd;
        }
        .card-form h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card-form label {
            font-weight: 600;
            display: block;
            margin: 1rem 0 0.3rem;
            font-size: 0.95rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d0ddd2;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.25s;
            background: #fff;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #1b6b3a;
            outline: none;
        }
        .card-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card-form .btn-submit {
            background: #1b6b3a;
            color: #fff;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 1.2rem;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-form .btn-submit:hover {
            background: #0f2b1a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.4rem 0 0.6rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
            padding: 0 0.1rem;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #c89f2d;
        }
        friend-link {
            display: block;
            background: #e9ede6;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2.5rem 0 1.2rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #dce6dd;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-weight: 500;
        }
        friend-link a:hover {
            background: #1b6b3a;
            color: #fff;
            text-decoration: none;
        }
        friend-link::before {
            content: "🔗 Friendly Links ";
            font-weight: 700;
            font-size: 1.1rem;
            color: #0f2b1a;
            display: block;
            margin-bottom: 0.6rem;
        }
        .site-footer {
            background: #0f2b1a;
            color: #d4e0d6;
            padding: 2.2rem 0 1.8rem;
            border-radius: 24px 24px 0 0;
            margin-top: 2.8rem;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .footer-inner .copy {
            font-size: 0.9rem;
        }
        .footer-inner .copy strong {
            color: #f9e27a;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2b1a;
                border-radius: 16px;
                padding: 1rem 0.8rem;
                margin-top: 0.6rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1.2rem;
                border-radius: 10px;
                width: 100%;
            }
            .content-area {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            .search-wrap {
                padding: 1.2rem 1rem;
            }
            .search-wrap form {
                flex-direction: column;
            }
            .search-wrap input[type="text"] {
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            friend-link a {
                display: block;
                margin: 0.4rem 0;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-area {
                padding: 1rem 0.9rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card-form {
                padding: 1.2rem 1rem;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafcfa;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1b6b3a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #dce6dd;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f7ee;
        }
        .schema-hidden {
            display: none;
        }
