*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0b1a0e;
            color: #e8f0e8;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7ed957;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #b4f0a0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2a14, #1a3d20);
            padding: 16px 0;
            border-bottom: 3px solid #7ed957;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5e56b, #f0c929);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(240, 201, 41, 0.15);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #b0d8b0;
            color: #b0d8b0;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8f0e8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .primary-nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #d0e8d0;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a:focus-visible {
            background: #2d5a35;
            color: #f5f5f5;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .primary-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.85rem;
            color: #98b898;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb a {
            color: #7ed957;
        }
        .breadcrumb a:hover {
            color: #b4f0a0;
        }
        .breadcrumb .sep {
            color: #4a7a4a;
        }
        .breadcrumb .current {
            color: #d0e8d0;
            font-weight: 600;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media(min-width:992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #f5e56b;
            letter-spacing: -0.5px;
        }
        .article-body h1 i {
            color: #7ed957;
            margin-right: 12px;
        }
        .article-body .subtitle {
            font-size: 1.15rem;
            color: #b0d8b0;
            margin-bottom: 28px;
            border-left: 4px solid #7ed957;
            padding-left: 18px;
        }
        .article-body .last-updated {
            font-size: 0.85rem;
            color: #7a9a7a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-body .last-updated i {
            color: #f0c929;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 42px 0 16px;
            color: #f0e6a0;
            border-bottom: 2px solid #2d5a35;
            padding-bottom: 8px;
        }
        .article-body h2 i {
            color: #7ed957;
            margin-right: 10px;
        }
        .article-body h3 {
            font-size: 1.5rem;
            margin: 32px 0 12px;
            color: #d4e8b0;
        }
        .article-body h3 i {
            color: #f0c929;
            margin-right: 8px;
            font-size: 1.2rem;
        }
        .article-body h4 {
            font-size: 1.2rem;
            margin: 24px 0 10px;
            color: #c0d8a0;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #dce8dc;
        }
        .article-body strong {
            color: #f5e56b;
            font-weight: 700;
        }
        .article-body em {
            color: #b4d8b4;
            font-style: italic;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 22px 28px;
            color: #d0e0d0;
        }
        .article-body li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .article-body blockquote {
            border-left: 5px solid #7ed957;
            background: #1a2e1e;
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8e0c8;
        }
        .article-body blockquote strong {
            color: #f0c929;
        }
        .article-body .feature-img {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a2e1e;
            padding: 8px;
        }
        .article-body .feature-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body .feature-img figcaption {
            text-align: center;
            padding: 12px 8px 6px;
            font-size: 0.9rem;
            color: #98b898;
        }
        .article-body .insight-box {
            background: linear-gradient(135deg, #1a3d20, #0f2a14);
            border: 1px solid #2d5a35;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .article-body .insight-box h4 {
            color: #f0c929;
            margin-top: 0;
        }
        .article-body .insight-box i {
            color: #7ed957;
        }
        .article-body .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 18px 0 22px;
            padding: 0;
            list-style: none;
        }
        .article-body .link-list-inline li {
            margin: 0;
        }
        .article-body .link-list-inline a {
            background: #1a3d20;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2d5a35;
            transition: all 0.25s ease;
            display: inline-block;
        }
        .article-body .link-list-inline a:hover {
            background: #2d5a35;
            border-color: #7ed957;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .sidebar-card {
            background: #142c18;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #1e3d24;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #f0e6a0;
            margin-bottom: 16px;
            border-bottom: 1px solid #2d5a35;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            margin-bottom: 6px;
        }
        .sidebar-card a {
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: background 0.2s ease;
            font-size: 0.95rem;
        }
        .sidebar-card a:hover {
            background: #1e3d24;
            text-decoration: none;
        }
        .sidebar-card a i {
            color: #7ed957;
            margin-right: 10px;
            width: 18px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 30px;
            border: 2px solid #2d5a35;
            background: #0f1f12;
            color: #e8f0e8;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-form input:focus {
            border-color: #7ed957;
        }
        .search-form input::placeholder {
            color: #5a7a5a;
        }
        .search-form button {
            background: #7ed957;
            border: none;
            border-radius: 30px;
            padding: 0 20px;
            color: #0b1a0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-form button:hover {
            background: #9be67a;
            transform: scale(1.02);
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 20px;
        }
        @media(min-width:768px) {
            .user-feedback {
                grid-template-columns: 1fr 1fr;
            }
        }
        .feedback-card {
            background: #142c18;
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid #1e3d24;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            color: #f0e6a0;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #7ed957;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card label {
            font-weight: 600;
            font-size: 0.95rem;
            color: #c0d8c0;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid #2d5a35;
            background: #0f1f12;
            color: #e8f0e8;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #7ed957;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 8px;
            font-size: 1.6rem;
            color: #4a6a4a;
            cursor: pointer;
            direction: rtl;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            cursor: pointer;
            transition: color 0.2s ease;
            font-size: 1.8rem;
            color: #4a6a4a;
            padding: 0 2px;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: #f0c929;
        }
        .feedback-card .btn-submit {
            background: #7ed957;
            border: none;
            border-radius: 30px;
            padding: 12px 28px;
            color: #0b1a0e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            align-self: flex-start;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            background: #9be67a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(126, 217, 87, 0.25);
        }
        .feedback-card .btn-submit i {
            font-size: 1.1rem;
        }
        .site-footer {
            background: #0a170c;
            border-top: 3px solid #1a3d20;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        @media(min-width:768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        .footer-copyright p {
            color: #7a9a7a;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-copyright strong {
            color: #b0d8b0;
        }
        .friend-link {
            display: block;
            background: #112a16;
            border-radius: 12px;
            padding: 18px 22px;
            border: 1px solid #1e3d24;
        }
        .friend-link h4 {
            color: #f0e6a0;
            font-size: 1.1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .friend-link h4 i {
            color: #7ed957;
        }
        .friend-link ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 16px;
        }
        .friend-link li {
            margin: 0;
        }
        .friend-link a {
            color: #98c898;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }
        .friend-link a:hover {
            color: #7ed957;
            text-decoration: underline;
        }
        @media(max-width:767px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
                order: 2;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px 0 4px;
                order: 3;
                background: #0f2a14;
                border-radius: 0 0 16px 16px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 1rem;
            }
            .article-body h1 {
                font-size: 1.9rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .article-body {
                font-size: 0.95rem;
            }
            .sidebar {
                margin-top: 20px;
            }
            .feedback-card .star-rating {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media(min-width:768px) {
            .nav-toggle {
                display: none !important;
            }
            .primary-nav {
                display: flex !important;
            }
        }
        @media(max-width:400px) {
            .article-body h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 10px;
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b1a0e;
        }
        ::-webkit-scrollbar-thumb {
            background: #2d5a35;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d7a45;
        }
        :focus-visible {
            outline: 2px solid #7ed957;
            outline-offset: 3px;
        }
        .primary-nav a,
        .sidebar-card a,
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            transition: all 0.25s ease;
        }
        .eeat-note {
            font-size: 0.85rem;
            color: #6a8a6a;
            border-top: 1px solid #1a3d20;
            padding-top: 16px;
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }
        .eeat-note i {
            color: #7ed957;
        }
        .eeat-note span {
            color: #98b898;
        }
