        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b1a0e;
            color: #d4e7d4;
            line-height: 1.75;
            padding: 0 16px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #7ddf7d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #b5f7b5;
            text-decoration: underline;
            outline: 2px solid #4caf50;
            outline-offset: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #e3ffe3;
            font-weight: 600;
            line-height: 1.3;
            margin-top: 1.6em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #4caf50;
            padding-left: 18px;
            margin-top: 0.4em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2e7d32;
            padding-bottom: 6px;
        }
        h3 {
            font-size: 1.35rem;
            color: #b8e6b8;
        }
        h4 {
            font-size: 1.1rem;
            color: #9ad49a;
        }
        p {
            margin-bottom: 1.2em;
            color: #cde0cd;
        }
        strong,
        b {
            color: #f0fff0;
            font-weight: 700;
        }
        em,
        i {
            color: #b2dfb2;
        }
        ul,
        ol {
            margin: 0.8em 0 1.4em 1.8em;
        }
        li {
            margin-bottom: 0.4em;
        }
        blockquote {
            border-left: 4px solid #4caf50;
            background: #1a2e1a;
            padding: 1em 1.4em;
            margin: 1.6em 0;
            border-radius: 8px;
            color: #d0ecd0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px dashed #2e7d32;
            margin: 2.4em 0;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 12px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2a0f, #1a3a1a);
            padding: 18px 0;
            border-radius: 0 0 24px 24px;
            margin-bottom: 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
            border-bottom: 2px solid #2e7d32;
            position: relative;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px 24px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #b5f7b5;
            text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
            background: linear-gradient(135deg, #66bb6a, #a5d6a7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.25s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo i {
            -webkit-text-fill-color: #66bb6a;
            margin-right: 8px;
            font-size: 1.8rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            outline: none;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px 20px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8e6c9;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: #2e7d32;
            color: #f0fff0;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-bar a.active {
            background: #1b5e20;
            color: #e8f5e9;
            box-shadow: inset 0 0 0 1px #4caf50;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #c8e6c9;
            font-size: 2rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1b5e20;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            padding: 10px 0 4px;
            font-size: 0.85rem;
            color: #8aaa8a;
            list-style: none;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #4caf50;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #a5d6a7;
        }
        .breadcrumb .current {
            color: #d4e7d4;
            font-weight: 500;
        }
        .search-section {
            background: #112211;
            padding: 28px 20px;
            border-radius: 20px;
            margin: 28px 0;
            border: 1px solid #2e7d32;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: #1a2e1a;
            color: #e8f5e9;
            font-size: 1rem;
            border: 1px solid #3a6a3a;
            transition: border 0.25s, box-shadow 0.25s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #66bb6a;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
        }
        .rating-section {
            background: #112211;
            padding: 24px 20px;
            border-radius: 20px;
            margin: 28px 0;
            border: 1px solid #2e7d32;
            text-align: center;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 6px;
            font-size: 2.2rem;
            color: #4a6a4a;
            cursor: pointer;
            direction: rtl;
            margin: 12px 0 8px;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #ffd54f;
            transform: scale(1.1);
        }
        .star-rating.selected i.active {
            color: #ffd54f;
        }
        .rating-section form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .rating-section input[type="hidden"] {
            display: none;
        }
        .rating-section button {
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            background: #2e7d32;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section button:hover {
            background: #4caf50;
        }
        .comments-section {
            background: #112211;
            padding: 28px 20px;
            border-radius: 20px;
            margin: 28px 0;
            border: 1px solid #2e7d32;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #3a6a3a;
            background: #1a2e1a;
            color: #e8f5e9;
            font-size: 0.95rem;
            transition: border 0.25s;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            outline: none;
            border-color: #66bb6a;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
        }
        .comments-section textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comments-section button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .comments-section button:hover {
            transform: scale(1.02);
        }
        .article-content {
            background: #0f1f0f;
            padding: 28px 20px;
            border-radius: 24px;
            border: 1px solid #1e3a1e;
            margin: 20px 0;
        }
        .article-content p {
            text-align: justify;
        }
        .featured-img {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            border: 2px solid #2e7d32;
            background: #0a1a0a;
            padding: 8px;
        }
        .featured-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
            background: #1a3a1a;
        }
        .featured-img figcaption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: 0.85rem;
            color: #8aaa8a;
        }
        friend-link {
            display: block;
            background: #0d1f0d;
            padding: 20px 18px;
            border-radius: 20px;
            border: 1px solid #2e7d32;
            margin: 28px 0 16px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #1a2e1a;
            border-radius: 30px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2e7d32;
            text-decoration: none;
        }
        .site-footer {
            background: linear-gradient(145deg, #0a1a0a, #112211);
            padding: 28px 0 18px;
            border-radius: 24px 24px 0 0;
            border-top: 2px solid #2e7d32;
            margin-top: 32px;
            text-align: center;
        }
        .site-footer p {
            font-size: 0.85rem;
            color: #7a9a7a;
            margin: 6px 0;
        }
        .site-footer .copyright {
            font-size: 0.8rem;
            color: #5a7a5a;
            border-top: 1px solid #1e3a1e;
            padding-top: 16px;
            margin-top: 16px;
        }
        .last-updated {
            display: inline-block;
            background: #1a2e1a;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #8aaa8a;
            border: 1px solid #2e7d32;
            margin: 12px 0 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0 8px;
                gap: 6px;
                border-top: 1px solid #2e7d32;
                margin-top: 12px;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 12px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .article-content {
                padding: 18px 12px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .star-rating {
                font-size: 1.8rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 4px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .rating-section {
                padding: 16px 12px;
            }
            .comments-section {
                padding: 18px 12px;
            }
            .search-section {
                padding: 18px 12px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1em;
        }
        .mb-1 {
            margin-bottom: 1em;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-block;
            background: #1b5e20;
            color: #c8e6c9;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .placeholder-img {
            background: linear-gradient(135deg, #1a3a1a, #2a5a2a);
            min-height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #5a8a5a;
            font-size: 1.2rem;
            border-radius: 12px;
        }
        .placeholder-img i {
            font-size: 4rem;
            opacity: 0.5;
        }
