        *,
        *::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, sans-serif;
            background: #f5f2eb;
            color: #2a2a2a;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        :root {
            --mc-green: #2e7d32;
            --mc-green-light: #4caf50;
            --mc-green-dark: #1b5e20;
            --mc-brown: #6d4c41;
            --mc-brown-light: #8d6e63;
            --mc-stone: #8d8d8d;
            --mc-gold: #f9a825;
            --mc-dirt: #a1887f;
            --mc-sky: #bbdefb;
            --mc-bg: #f5f2eb;
            --mc-card: #ffffff;
            --mc-text: #2a2a2a;
            --mc-text-light: #5a5a5a;
            --mc-border: #ddd8cf;
            --mc-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .site-header {
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #1b5e20 100%);
            color: #fff;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
            color: #fff;
        }
        .my-logo i {
            color: var(--mc-gold);
            font-size: 1.8rem;
        }
        .my-logo span {
            background: rgba(255, 255, 255, 0.12);
            padding: 0.1rem 0.6rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8f5e9;
            padding: 0.45rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.35rem;
            font-size: 0.8rem;
        }
        .main-nav .nav-highlight {
            background: var(--mc-gold);
            color: #1b5e20;
            font-weight: 700;
        }
        .main-nav .nav-highlight:hover {
            background: #fbc02d;
            color: #1b5e20;
        }
        .breadcrumb-wrap {
            background: #e8e3da;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--mc-border);
            font-size: 0.85rem;
        }
        .breadcrumb-wrap .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.35rem;
        }
        .breadcrumb-wrap a {
            color: var(--mc-green);
        }
        .breadcrumb-wrap a:hover {
            color: var(--mc-green-dark);
        }
        .breadcrumb-wrap .sep {
            color: var(--mc-stone);
            margin: 0 0.15rem;
        }
        .breadcrumb-wrap .current {
            color: var(--mc-text-light);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1b5e20 0%, #2e7d32 60%, #1b5e20 100%);
            color: #fff;
            padding: 3rem 0 3.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⛏️🌿🔥";
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 10rem;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(-8deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .hero h1 i {
            color: var(--mc-gold);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 1.25rem;
            opacity: 0.92;
            line-height: 1.6;
        }
        .hero .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--mc-gold);
            color: #1b5e20;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
        }
        .hero .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            text-decoration: none;
            color: #1b5e20;
        }
        .hero .hero-meta {
            margin-top: 1.2rem;
            font-size: 0.9rem;
            opacity: 0.7;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
            flex: 1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: var(--mc-card);
            padding: 2rem 2rem 2.5rem;
            border-radius: 16px;
            box-shadow: var(--mc-shadow);
            border: 1px solid var(--mc-border);
        }
        .content-body h2 {
            font-size: 1.9rem;
            color: var(--mc-green-dark);
            margin: 2.2rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--mc-green-light);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.45rem;
            color: var(--mc-brown);
            margin: 1.6rem 0 0.7rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .content-body h4 {
            font-size: 1.15rem;
            color: var(--mc-text);
            margin: 1.2rem 0 0.5rem 0;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 1rem;
            color: var(--mc-text);
        }
        .content-body .highlight-box {
            background: #e8f5e9;
            border-left: 5px solid var(--mc-green);
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .content-body .highlight-box strong {
            color: var(--mc-green-dark);
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1rem;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .featured-img {
            margin: 1.8rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--mc-shadow);
            background: #e8e3da;
        }
        .content-body .featured-img img {
            width: 100%;
            display: block;
        }
        .content-body .featured-img figcaption {
            padding: 0.75rem 1.2rem;
            background: #f0ede7;
            font-size: 0.9rem;
            color: var(--mc-text-light);
            font-style: italic;
        }
        .content-body .insight-card {
            background: #f9f6f0;
            border: 1px solid var(--mc-border);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.2rem 0;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .content-body .insight-card i {
            font-size: 1.6rem;
            color: var(--mc-gold);
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        .content-body .insight-card p {
            margin-bottom: 0;
        }
        .content-body .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            margin: 1rem 0;
            padding: 0;
            list-style: none;
        }
        .content-body .link-list-inline li a {
            background: #e8f5e9;
            padding: 0.25rem 0.9rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--mc-green-dark);
            transition: background 0.2s;
        }
        .content-body .link-list-inline li a:hover {
            background: #c8e6c9;
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: var(--mc-card);
            border-radius: 14px;
            padding: 1.4rem 1.5rem;
            box-shadow: var(--mc-shadow);
            border: 1px solid var(--mc-border);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--mc-green-dark);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 2px solid var(--mc-green-light);
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ede7;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--mc-text);
            font-size: 0.92rem;
        }
        .sidebar-card ul li a:hover {
            color: var(--mc-green);
            text-decoration: none;
        }
        .sidebar-card ul li a i {
            color: var(--mc-green-light);
            font-size: 0.7rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            width: 100%;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.6rem 1rem;
            border: 2px solid var(--mc-border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #faf9f6;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--mc-green);
        }
        .search-form button {
            background: var(--mc-green);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: var(--mc-green-dark);
        }
        .interaction-area {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid var(--mc-border);
        }
        .interaction-area h3 {
            font-size: 1.4rem;
            color: var(--mc-green-dark);
            margin-bottom: 0.5rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
            margin-top: 1rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 0.65rem 1rem;
            border: 2px solid var(--mc-border);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            background: #faf9f6;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: var(--mc-green);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .form-row,
        .rating-form .form-row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .comment-form .form-row input,
        .rating-form .form-row input {
            flex: 1;
            min-width: 180px;
        }
        .btn-submit {
            background: var(--mc-green);
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: var(--mc-green-dark);
            transform: translateY(-1px);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: var(--mc-gold);
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
            border-top: 4px solid var(--mc-green);
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            color: #aaa;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .footer-inner ul li a {
            color: #aaa;
            transition: color 0.2s;
        }
        .footer-inner ul li a:hover {
            color: var(--mc-green-light);
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin-top: 1.2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #333;
        }
        friend-link a {
            color: #aaa;
            margin-right: 1.2rem;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: var(--mc-green-light);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.85rem;
            color: #888;
        }
        .footer-bottom .copyright {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.25);
                padding: 0.75rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 0.9rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-body {
                padding: 1.25rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-inner h4 {
                margin-bottom: 0.4rem;
            }
            .hero .hero-meta {
                flex-direction: column;
                gap: 0.3rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-body {
                padding: 1rem;
            }
            .comment-form .form-row,
            .rating-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input,
            .rating-form .form-row input {
                min-width: unset;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--mc-green);
            color: #fff;
            padding: 0.5rem 1.2rem;
            z-index: 10000;
            border-radius: 0 0 8px 0;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
