        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3ee;
            color: #2c2c2c;
            line-height: 1.7;
            font-size: 17px;
            padding: 0 16px;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            padding: 20px 24px 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0 16px;
            border-bottom: 3px solid #d7ccc8;
            margin-bottom: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #3e2723, #5d4037);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 6px rgba(62, 39, 35, 0.15);
            display: inline-block;
        }
        .my-logo small {
            font-size: 16px;
            font-weight: 400;
            -webkit-text-fill-color: #6d4c41;
            color: #6d4c41;
            letter-spacing: 0.3px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px 18px;
            flex-wrap: wrap;
        }
        .nav-list a {
            font-weight: 600;
            font-size: 16px;
            padding: 6px 10px;
            border-radius: 40px;
            background: transparent;
            transition: 0.2s;
            color: #3e2723;
        }
        .nav-list a:hover {
            background: #efebe9;
            color: #1b5e20;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            color: #3e2723;
            padding: 4px 8px;
        }
        .hamburger:focus {
            outline: 2px solid #2e7d32;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 14px;
            padding: 8px 0 14px;
            color: #6d4c41;
            border-bottom: 1px solid #e0d6cc;
            margin-bottom: 18px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #a1887f;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5d4037;
        }
        .breadcrumb .active {
            color: #2e7d32;
            font-weight: 600;
        }
        h1 {
            font-size: 38px;
            font-weight: 800;
            color: #1b3a1b;
            margin: 0 0 12px;
            line-height: 1.25;
            letter-spacing: -0.3px;
        }
        h2 {
            font-size: 30px;
            font-weight: 700;
            color: #2e4a2e;
            margin: 38px 0 14px;
            border-left: 6px solid #4caf50;
            padding-left: 18px;
        }
        h3 {
            font-size: 24px;
            font-weight: 660;
            color: #3e5c3e;
            margin: 30px 0 12px;
        }
        h4 {
            font-size: 20px;
            font-weight: 600;
            color: #4e6e4e;
            margin: 22px 0 10px;
        }
        p {
            margin: 0 0 18px;
            word-spacing: 0.4px;
        }
        .highlight {
            background: #e8f5e9;
            padding: 0 6px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 6px;
        }
        .insider-tip {
            background: #fff8e1;
            border-left: 5px solid #ffb300;
            padding: 14px 20px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-style: normal;
        }
        .insider-tip strong {
            color: #e65100;
        }
        .cmd-block {
            background: #1e1e1e;
            color: #d4e7c5;
            font-family: 'Cascadia Code', 'Fira Code', monospace;
            padding: 14px 20px;
            border-radius: 12px;
            overflow-x: auto;
            margin: 16px 0 22px;
            font-size: 15px;
            box-shadow: inset 0 0 0 1px #3a3a3a;
        }
        .cmd-block .comment {
            color: #8bc34a;
            opacity: 0.7;
        }
        .cmd-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border-radius: 12px;
            overflow: hidden;
        }
        .cmd-table th {
            background: #2e7d32;
            color: #fff;
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
        }
        .cmd-table td {
            padding: 13px 16px;
            border-bottom: 1px solid #e0d6cc;
            background: #fafafa;
        }
        .cmd-table tr:last-child td {
            border-bottom: none;
        }
        .cmd-table tr:hover td {
            background: #f1f8e9;
        }
        .feature-img {
            border-radius: 18px;
            margin: 28px 0 18px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .img-caption {
            font-size: 14px;
            color: #6d4c41;
            text-align: center;
            margin-top: -8px;
            margin-bottom: 24px;
            font-style: italic;
        }
        .search-section {
            background: #efebe9;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 40px 0 30px;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 18px;
            border: 2px solid #bcaaa4;
            border-radius: 40px;
            font-size: 16px;
            background: #fff;
            transition: 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #2e7d32;
            outline: none;
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.15);
        }
        .search-form button {
            background: #2e7d32;
            border: none;
            color: #fff;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form button:hover {
            background: #1b5e20;
            transform: scale(1.02);
        }
        .rating-area {
            background: #f9f3ea;
            padding: 24px 28px;
            border-radius: 20px;
            margin: 30px 0;
            border: 1px solid #d7ccc8;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 32px;
            margin: 10px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d7ccc8;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9a825;
        }
        .rating-form button {
            background: #5d4037;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 16px;
        }
        .rating-form button:hover {
            background: #3e2723;
        }
        .comment-section {
            background: #ffffff;
            padding: 24px 0 10px;
            margin: 30px 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #bcaaa4;
            border-radius: 16px;
            font-size: 16px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: 0.25s;
            background: #fafafa;
        }
        .comment-form textarea:focus {
            border-color: #2e7d32;
            outline: none;
            box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
        }
        .comment-form .btn-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .comment-form button {
            background: #2e7d32;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: 0.2s;
        }
        .comment-form button:hover {
            background: #1b5e20;
        }
        friend-link {
            display: block;
            background: #3e2723;
            color: #efebe9;
            padding: 26px 28px;
            border-radius: 20px;
            margin: 40px 0 20px;
            font-size: 16px;
        }
        friend-link a {
            color: #a5d6a7;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        friend-link .fl-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
            color: #d7ccc8;
            letter-spacing: 0.3px;
        }
        .site-footer {
            border-top: 2px solid #d7ccc8;
            padding: 24px 0 10px;
            margin-top: 20px;
            font-size: 15px;
            color: #5d4037;
            text-align: center;
        }
        .site-footer .copyright {
            font-weight: 500;
            letter-spacing: 0.2px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 14px 16px 30px;
                margin-top: 10px;
                border-radius: 16px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
                padding-left: 12px;
            }
            h3 {
                font-size: 20px;
            }
            h4 {
                font-size: 18px;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo small {
                font-size: 13px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 12px 0;
                border-radius: 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                margin-top: 10px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                padding: 10px 16px;
                font-size: 17px;
            }
            .hamburger {
                display: inline-block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            .cmd-table {
                font-size: 14px;
            }
            .cmd-table th,
            .cmd-table td {
                padding: 10px 12px;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 28px;
            }
            friend-link {
                padding: 20px 16px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 24px;
            }
            .breadcrumb {
                font-size: 12px;
            }
            .cmd-block {
                font-size: 13px;
                padding: 12px 14px;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .text-small {
            font-size: 14px;
            color: #6d4c41;
        }
        .badge {
            display: inline-block;
            background: #4caf50;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 700;
        }
        .last-updated {
            color: #6d4c41;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }
        .last-updated i {
            color: #2e7d32;
        }
