*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f0e1;
            color: #2b2b2b;
            line-height: 1.75;
            font-size: 16px;
        }
        a {
            color: #2d5016;
            text-decoration: none;
            transition: color .3s;
        }
        a:hover {
            color: #c9a84c;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a0f, #2d5016);
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-family: Georgia, serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #f5f0e1;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: #c9a84c;
        }
        .my-logo a {
            color: #f5f0e1;
        }
        .my-logo a:hover {
            color: #c9a84c;
        }
        .header-domain {
            font-size: .85rem;
            color: #aac77f;
            display: block;
            letter-spacing: 1px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 18px;
        }
        .nav-links li a {
            color: #f5f0e1;
            font-weight: 600;
            font-size: .9rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background .3s;
        }
        .nav-links li a:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #f5f0e1;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e5ddc8;
            padding: 8px 0;
            font-size: .85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li::after {
            content: '›';
            margin-left: 6px;
            color: #777;
        }
        .breadcrumb li:last-child::after {
            content: '';
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 30px 0;
        }
        article {
            background: #fff;
            padding: 30px;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
            max-width: 850px;
            margin: 0 auto;
        }
        h1 {
            font-family: Georgia, serif;
            font-size: 2.1rem;
            color: #1e3a0f;
            line-height: 1.3;
            margin-bottom: 14px;
            border-left: 5px solid #c9a84c;
            padding-left: 18px;
        }
        h2 {
            font-family: Georgia, serif;
            font-size: 1.65rem;
            color: #1e3a0f;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e5ddc8;
            position: relative;
        }
        h2::before {
            content: '#';
            color: #c9a84c;
            margin-right: 8px;
        }
        h3 {
            font-size: 1.2rem;
            color: #2d5016;
            margin: 28px 0 12px;
            font-weight: 700;
        }
        h4 {
            font-size: 1.05rem;
            color: #444;
            margin: 20px 0 8px;
            font-weight: 700;
        }
        p {
            margin-bottom: 16px;
            text-align: justify;
        }
        ul,
        ol {
            margin: 0 0 16px 24px;
        }
        li {
            margin-bottom: 6px;
        }
        .highlight-box {
            background: #f5f0e1;
            border-left: 4px solid #c9a84c;
            padding: 16px 20px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .feature-image {
            width: 100%;
            border-radius: 10px;
            height: auto;
            margin: 24px 0 8px;
            border: 2px solid #e5ddc8;
        }
        .image-caption {
            font-size: .85rem;
            color: #777;
            text-align: center;
            margin-bottom: 20px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: .95rem;
        }
        th {
            background: #2d5016;
            color: #fff;
            padding: 10px;
            text-align: left;
        }
        td {
            border: 1px solid #ddd;
            padding: 8px 10px;
        }
        tr:nth-child(even) {
            background: #f9f7f0;
        }
        .search-box {
            background: #f5f0e1;
            padding: 14px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 8px;
            max-width: 340px;
            margin: 14px 0;
        }
        .search-box input {
            border: none;
            background: transparent;
            flex: 1;
            padding: 8px;
            font-size: .9rem;
            outline: none;
        }
        .search-box button {
            background: #2d5016;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            font-size: .9rem;
        }
        .rating-section,
        .comment-section {
            background: #faf8f2;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border: 1px solid #e5ddc8;
        }
        .rating-section h3,
        .comment-section h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.5rem;
            color: #c9a84c;
            cursor: pointer;
            margin-bottom: 10px;
        }
        .star-rating i {
            transition: transform .2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .rating-form input[type="submit"],
        .comment-form input[type="submit"] {
            background: #2d5016;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: background .3s;
        }
        .rating-form input[type="submit"]:hover,
        .comment-form input[type="submit"]:hover {
            background: #1e3a0f;
        }
        .comment-form textarea {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 12px;
            font-size: .95rem;
            resize: vertical;
            min-height: 100px;
            margin-bottom: 12px;
        }
        .comment-form input[type="text"],
        .rating-form input[type="number"] {
            width: 100%;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 10px;
            font-size: .9rem;
            margin-bottom: 12px;
        }
        .site-footer {
            background: #1e3a0f;
            color: #c8e6c0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        friend-link {
            display: block;
            font-weight: 700;
            color: #fff;
            margin: 10px 0;
        }
        friend-link a {
            color: #c9a84c;
            margin: 0 10px;
        }
        friend-link a:hover {
            color: #fff;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 18px;
            font-size: .85rem;
            text-align: center;
            color: #aac77f;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: #1e3a0f;
                padding: 20px;
                gap: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
            }
            .nav-links.show {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
        }
