* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b1a0b;
            color: #d4e7c5;
            line-height: 1.8;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #8bc34a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c5e1a5;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: #0f2a0f;
            border-bottom: 3px solid #2e7d32;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(11, 26, 11, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #a5d6a7;
            text-shadow: 0 0 12px rgba(76, 175, 80, 0.3);
            transition: text-shadow 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
            text-decoration: none;
        }
        .my-logo i {
            font-size: 30px;
            color: #66bb6a;
        }
        .my-logo span {
            font-weight: 300;
            color: #81c784;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #4caf50;
            color: #a5d6a7;
            font-size: 26px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #1b3a1b;
        }
        nav {
            display: flex;
            gap: 6px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #b8d9b0;
            font-weight: 500;
            font-size: 16px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            color: #c8e6c9;
            border-bottom-color: #66bb6a;
            text-decoration: none;
        }
        .breadcrumb {
            background: #0d1f0d;
            padding: 12px 0;
            font-size: 15px;
            border-bottom: 1px solid #1d3a1d;
        }
        .breadcrumb a {
            color: #81c784;
        }
        .breadcrumb a:hover {
            color: #a5d6a7;
        }
        .breadcrumb span {
            color: #6a9e6a;
        }
        .breadcrumb i {
            font-size: 12px;
            color: #4caf50;
            margin: 0 6px;
        }
        .hero {
            padding: 50px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: #c8e6c9;
            text-shadow: 0 0 30px rgba(76, 175, 80, 0.15);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #66bb6a;
            margin-right: 12px;
        }
        .hero .sub {
            font-size: 20px;
            color: #9ccc9c;
            max-width: 700px;
            margin: 0 auto 12px;
        }
        .hero .meta {
            font-size: 15px;
            color: #6a9e6a;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .content {
            padding: 20px 0 50px;
        }
        .content h2 {
            font-size: 34px;
            color: #c8e6c9;
            margin: 48px 0 18px;
            border-left: 5px solid #4caf50;
            padding-left: 20px;
            font-weight: 700;
        }
        .content h3 {
            font-size: 26px;
            color: #b8d9b0;
            margin: 36px 0 14px;
            font-weight: 600;
        }
        .content h4 {
            font-size: 21px;
            color: #a5d6a7;
            margin: 24px 0 10px;
            font-weight: 600;
        }
        .content p {
            margin-bottom: 18px;
            color: #d4e7c5;
        }
        .content ul,
        .content ol {
            margin: 14px 0 20px 28px;
            color: #c8ddc0;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight-box {
            background: #132413;
            border-left: 6px solid #66bb6a;
            padding: 24px 28px;
            border-radius: 10px;
            margin: 28px 0;
        }
        .content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .content .stat-card {
            background: #102310;
            padding: 22px 18px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #1d3a1d;
        }
        .content .stat-card .num {
            font-size: 40px;
            font-weight: 800;
            color: #81c784;
            display: block;
        }
        .content .stat-card .label {
            font-size: 16px;
            color: #8db88d;
        }
        .content .img-wrapper {
            margin: 32px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #0d1f0d;
            padding: 12px;
            border: 1px solid #1d3a1d;
        }
        .content .img-wrapper figcaption {
            font-size: 15px;
            color: #8db88d;
            padding: 12px 6px 4px;
            text-align: center;
            font-style: italic;
        }
        .content blockquote {
            background: #102310;
            border-left: 6px solid #8bc34a;
            padding: 20px 26px;
            margin: 28px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: #c8ddc0;
        }
        .content blockquote cite {
            display: block;
            margin-top: 10px;
            font-size: 15px;
            color: #81c784;
            font-style: normal;
        }
        .content .link-list {
            background: #0d1f0d;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid #1d3a1d;
        }
        .content .link-list a {
            display: inline-block;
            margin: 4px 12px 4px 0;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        .interactive-section .card {
            background: #102310;
            padding: 28px 24px;
            border-radius: 14px;
            border: 1px solid #1d3a1d;
        }
        .interactive-section .card h3 {
            font-size: 22px;
            margin-top: 0;
            margin-bottom: 16px;
            color: #c8e6c9;
        }
        .interactive-section .card input,
        .interactive-section .card textarea,
        .interactive-section .card select {
            width: 100%;
            padding: 12px 16px;
            background: #0b1a0b;
            border: 1px solid #2e4a2e;
            border-radius: 8px;
            color: #d4e7c5;
            font-size: 16px;
            margin-bottom: 14px;
            transition: 0.2s;
        }
        .interactive-section .card input:focus,
        .interactive-section .card textarea:focus,
        .interactive-section .card select:focus {
            outline: none;
            border-color: #66bb6a;
            box-shadow: 0 0 12px rgba(76, 175, 80, 0.15);
        }
        .interactive-section .card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interactive-section .card button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .interactive-section .card button:hover {
            background: #388e3c;
            transform: translateY(-1px);
        }
        .interactive-section .card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 30px;
            color: #4a6a4a;
            cursor: pointer;
            margin-bottom: 14px;
        }
        .interactive-section .card .star-rating i {
            transition: 0.2s;
        }
        .interactive-section .card .star-rating i.active {
            color: #ffb300;
        }
        .interactive-section .card .star-rating i:hover {
            color: #ffb300;
            transform: scale(1.1);
        }
        footer {
            background: #0a170a;
            border-top: 3px solid #1d3a1d;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        footer h4 {
            color: #a5d6a7;
            font-size: 18px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        footer a {
            color: #8db88d;
            display: block;
            margin-bottom: 6px;
            font-size: 15px;
        }
        footer a:hover {
            color: #c8e6c9;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 3px 14px 3px 0;
            font-size: 15px;
            color: #81c784;
        }
        friend-link a:hover {
            color: #c8e6c9;
        }
        .copyright {
            border-top: 1px solid #1d3a1d;
            padding-top: 20px;
            text-align: center;
            font-size: 15px;
            color: #5a7a5a;
        }
        .copyright strong {
            color: #8db88d;
        }
        @media (max-width: 900px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            .hero h1 {
                font-size: 32px;
            }
            .content h2 {
                font-size: 26px;
            }
            .content h3 {
                font-size: 21px;
            }
            .content h4 {
                font-size: 18px;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid #1d3a1d;
                width: 100%;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }
            .container {
                padding: 0 16px;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b1a0b;
        }
        ::-webkit-scrollbar-thumb {
            background: #2e4a2e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #4caf50;
        }
        .emoji-big {
            font-size: 28px;
            vertical-align: middle;
        }
        .tag {
            display: inline-block;
            background: #1b3a1b;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 14px;
            color: #a5d6a7;
            margin: 2px 4px 2px 0;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #0d1f0d;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 15px;
            color: #81c784;
            border: 1px solid #1d3a1d;
        }
