* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #1d6b2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0f401a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0b2e1a 0%, #1a5c2e 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #facc15;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: #fff;
        }
        .my-logo:hover {
            color: #facc15;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #c8e6c9;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8f5e9;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #facc15;
            text-decoration: none;
        }
        .nav-menu .nav-active {
            background: rgba(255, 255, 255, 0.12);
            color: #facc15;
            font-weight: 600;
        }
        .breadcrumb-wrap {
            background: #e8f0e4;
            padding: 10px 0;
            border-bottom: 1px solid #d0dfc8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #2d6e3b;
        }
        .breadcrumb span {
            color: #5a7a5a;
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-main h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #0b2e1a;
            margin-bottom: 12px;
            font-weight: 800;
        }
        .content-main .subtitle {
            font-size: 1.1rem;
            color: #3d5a3d;
            margin-bottom: 28px;
            border-left: 4px solid #2e7d32;
            padding-left: 18px;
        }
        .last-updated {
            display: inline-block;
            background: #e8f0e4;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #3d5a3d;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .featured-img-wrap {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-img-wrap figcaption {
            background: #f0f5ec;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: #3d5a3d;
            font-style: italic;
        }
        h2 {
            font-size: 1.9rem;
            color: #0b2e1a;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #2e7d32;
            font-weight: 700;
        }
        h3 {
            font-size: 1.4rem;
            color: #1a4a2a;
            margin: 32px 0 12px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.15rem;
            color: #2a5a2a;
            margin: 24px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 18px;
            color: #1e2a1e;
        }
        .highlight-box {
            background: #eaf5e4;
            border-left: 5px solid #2e7d32;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #0b3d1a;
        }
        .stat-badge {
            display: inline-block;
            background: #1d6b2e;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 8px;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 16px;
            border-bottom: 2px solid #e0ece0;
            padding-bottom: 10px;
        }
        .sidebar-links a {
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #edf3ea;
            font-weight: 500;
            color: #1d6b2e;
        }
        .sidebar-links a:hover {
            color: #0f401a;
            padding-left: 6px;
        }
        .sidebar-links a i {
            width: 22px;
            color: #2e7d32;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #d0dfc8;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #2e7d32;
        }
        .search-form button {
            background: #1d6b2e;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 20px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #0f4a1a;
        }
        .comment-area,
        .rating-area {
            background: #fff;
            border-radius: 16px;
            padding: 28px 32px;
            margin-top: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .comment-area h3,
        .rating-area h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d0dfc8;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 14px;
            outline: none;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #2e7d32;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-submit {
            background: #1d6b2e;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-submit:hover {
            background: #0f4a1a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #facc15;
            margin-bottom: 14px;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        footer {
            background: #0b2e1a;
            color: #d4e8d4;
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-brand h3 {
            color: #facc15;
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        .footer-brand p {
            color: #b8d4b8;
            font-size: 0.95rem;
        }
        .footer-links h4 {
            color: #e8f5e9;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-links a {
            display: block;
            color: #b8d4b8;
            padding: 4px 0;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: #facc15;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px 24px;
            margin-top: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #b8d4b8;
        }
        friend-link a:hover {
            color: #facc15;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
            margin-top: 28px;
            text-align: center;
            font-size: 0.9rem;
            color: #8aad8a;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(11, 46, 26, 0.98);
                border-radius: 16px;
                padding: 16px 12px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 12px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .content-main h1 {
                font-size: 1.8rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .comment-area,
            .rating-area {
                padding: 20px 18px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .content-main h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        :focus-visible {
            outline: 3px solid #2e7d32;
            outline-offset: 2px;
        }
