*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --grass: #3b852e;
            --dirt: #8B5E3C;
            --stone: #7d7d7d;
            --deep-dark: #1d1d1f;
            --gold: #f5d20b;
            --cream: #f8f4ec;
            --water: #44a6c6;
            --border-radius: 10px;
            --transition: all .2s ease;
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--cream);
            color: #2b2b2b;
            line-height: 1.8;
            word-wrap: break-word;
        }
        a {
            color: #1d5f9e;
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #9d5a27;
            text-decoration: underline;
        }
        .container {
            width: min(1320px, 92%);
            margin-inline: auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(180deg, #1c1c1c 0%, #2a2a2a 100%);
            padding: .6rem 0;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
            position: sticky;
            top: 0;
            z-index: 990;
        }
        .header-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a0df4a, #57b13b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
            display: inline-block;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5d20b;
            margin-right: .3rem;
        }
        .domain-link {
            display: block;
            color: #aaa;
            font-size: .8rem;
            letter-spacing: .5px;
        }
        .header-nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-links {
            display: flex;
            gap: 1.3rem;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #e7e7e7;
            font-weight: 500;
            font-size: .9rem;
            padding: .3rem .4rem;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
            text-decoration: none;
        }
        .burger {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
            padding: .4rem;
        }
        .search-form {
            display: flex;
            background: #ffffff;
            border-radius: 999px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
        }
        .search-form input {
            border: none;
            padding: .55rem 1rem;
            font-size: .9rem;
            outline: none;
            width: 180px;
        }
        .search-form button {
            background: var(--grass);
            border: none;
            color: white;
            padding: 0 .8rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #2a6a1f;
        }
        .breadcrumb-wrap {
            background: #f1ede5;
            padding: .6rem 0;
            font-size: .85rem;
            border-bottom: 1px solid #e3ddd2;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "/";
            color: #9a9a9a;
            margin-right: .4rem;
        }
        .breadcrumb a {
            color: #5d5d5d;
        }
        .hero {
            padding: 2rem 0 1rem;
        }
        h1 {
            font-size: clamp(2.1rem, 4.5vw, 3.5rem);
            color: var(--deep-dark);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1rem;
            position: relative;
            letter-spacing: -1px;
        }
        h1::after {
            content: "⛏️";
            margin-left: .4rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-between;
            color: #676767;
            font-size: .9rem;
            padding-bottom: 1.2rem;
            border-bottom: 2px solid #e3e0d8;
        }
        h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin: 3rem 0 1rem;
            border-left: 6px solid var(--grass);
            padding-left: .9rem;
            color: #1c1c1c;
        }
        h3 {
            font-size: clamp(1.3rem, 2.2vw, 1.7rem);
            font-weight: 600;
            margin: 2rem 0 .8rem;
            color: #2e2e2e;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.4rem 0 .5rem;
            color: #3a3a3a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: .8rem 0 1.5rem 1.4rem;
        }
        li {
            margin-bottom: .35rem;
        }
        .card {
            background: #fff;
            border-radius: var(--border-radius);
            padding: 1.6rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        }
        .grid-2col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .grid-3col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 8px;
            border: 1px solid #e6dfd3;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            font-size: .93rem;
        }
        th {
            background: #eef3e9;
            font-weight: 700;
            padding: .8rem;
            text-align: left;
            border-bottom: 2px solid var(--grass);
        }
        td {
            padding: .65rem .8rem;
            border-bottom: 1px solid #ede8e0;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .featured-figure {
            margin: 2rem auto;
            text-align: center;
            border-radius: 18px;
            background: #eee;
            padding: 1rem;
        }
        .featured-figure img {
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
        }
        figcaption {
            font-size: .9rem;
            color: #6e6e6e;
            margin-top: .65rem;
            font-style: italic;
        }
        .blockquote-pixel {
            background: #eaf4e5;
            border-left: 5px solid var(--grass);
            border-radius: 0 12px 12px 0;
            padding: 1.4rem;
            margin: 1.8rem 0;
        }
        .author-bio {
            display: flex;
            gap: 1rem;
            background: #fdfaf5;
            border: 1px solid #ebdfcb;
            border-radius: 16px;
            padding: 1.2rem;
            margin: 2rem 0;
            align-items: center;
        }
        .author-bio i {
            font-size: 2.5rem;
            color: var(--grass);
        }
        .btn {
            display: inline-block;
            padding: .6rem 1.3rem;
            background: var(--grass);
            color: white;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: .9rem;
        }
        .btn:hover {
            background: #2a6b1f;
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        .interactive-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: .8rem;
        }
        input,
        textarea,
        select {
            width: 100%;
            padding: .8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font: inherit;
            background: white;
        }
        .star-rating {
            display: inline-flex;
            flex-direction: row-reverse;
            gap: .2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label i {
            font-size: 1.7rem;
            color: #ccc;
            transition: .2s;
            cursor: pointer;
        }
        .star-rating label:hover i,
        .star-rating input:checked~label i {
            color: var(--gold);
        }
        .site-footer {
            background: #1d1d1d;
            color: #c6c6c6;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            border-bottom: 1px solid #3c3c3c;
            padding-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: #272727;
            border-radius: 12px;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border: 1px solid #3d3d3d;
        }
        friend-link a {
            color: #c9d94e;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 1.8rem;
            font-size: .8rem;
            color: #9a9a9a;
        }
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1d1d1d;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1.2rem 2rem;
                border-top: 1px solid #333;
            }
            .nav-links.nav-open {
                display: flex;
            }
            .header-grid {
                flex-wrap: nowrap;
            }
            .search-form input {
                width: 110px;
            }
            h1 {
                font-size: 2.1rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: .3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                width: 96%;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form {
                display: none;
            }
        }
        .anchor {
            scroll-margin-top: 100px;
        }
.nav-links{display:flex;flex-wrap:wrap;}
