        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a2f, #2d5a44);
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: inline-block;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #e7e5e4;
            color: #e7e5e4;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #fbbf24;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 6px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #f5f0e8;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #fbbf24;
            color: #1e3a2f;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #e7e2d8;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #5c5246;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #a0927e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7c5c3e;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .content-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article h1 {
            font-size: 2.6rem;
            line-height: 1.2;
            color: #1e3a2f;
            margin-bottom: 0.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        .main-article h1 i {
            color: #f59e0b;
        }
        .main-article .meta {
            color: #6b5e4e;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            border-bottom: 2px solid #e7e2d8;
            padding-bottom: 16px;
        }
        .main-article .meta i {
            margin-right: 6px;
            color: #b45309;
        }
        .main-article h2 {
            font-size: 1.9rem;
            color: #2d5a44;
            margin: 2.5rem 0 0.8rem;
            border-left: 6px solid #f59e0b;
            padding-left: 18px;
            font-weight: 700;
        }
        .main-article h3 {
            font-size: 1.4rem;
            color: #3d2e1e;
            margin: 1.8rem 0 0.6rem;
            font-weight: 600;
        }
        .main-article h4 {
            font-size: 1.15rem;
            color: #5c4a32;
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
            font-style: italic;
        }
        .main-article p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .main-article .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .main-article .highlight-box {
            background: #f0ebe2;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 2rem 0;
            border-left: 6px solid #f59e0b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .main-article .highlight-box i {
            color: #b45309;
            margin-right: 10px;
        }
        .main-article ul,
        .main-article ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        .main-article li {
            margin-bottom: 0.4rem;
        }
        .main-article table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.98rem;
        }
        .main-article th,
        .main-article td {
            border: 1px solid #d6cec0;
            padding: 10px 14px;
            text-align: left;
        }
        .main-article th {
            background: #2d5a44;
            color: #f5f0e8;
            font-weight: 600;
        }
        .main-article tr:nth-child(even) {
            background: #f6f2ea;
        }
        .sidebar {
            background: #f0ebe2;
            border-radius: 20px;
            padding: 28px 22px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #1e3a2f;
            border-bottom: 3px solid #f59e0b;
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            display: block;
            padding: 8px 12px;
            background: #fffcf7;
            border-radius: 10px;
            border-left: 4px solid #d6cec0;
            transition: all 0.2s;
            font-weight: 500;
        }
        .sidebar a:hover {
            border-left-color: #f59e0b;
            background: #fff7ec;
            text-decoration: none;
            transform: translateX(4px);
        }
        .sidebar .score-widget {
            margin-top: 28px;
            padding: 20px 16px;
            background: #fffcf7;
            border-radius: 16px;
            text-align: center;
        }
        .sidebar .score-widget .stars {
            font-size: 2rem;
            color: #d6cec0;
            cursor: pointer;
            display: inline-flex;
            gap: 6px;
        }
        .sidebar .score-widget .stars i.active {
            color: #f59e0b;
        }
        .sidebar .score-widget .stars i:hover {
            color: #f59e0b;
            transform: scale(1.2);
        }
        .search-section {
            background: #e7e2d8;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-section input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf7;
            border: 2px solid transparent;
            transition: border 0.2s;
        }
        .search-section input:focus {
            outline: none;
            border-color: #f59e0b;
        }
        .search-section button {
            padding: 12px 28px;
            background: #1e3a2f;
            color: #fbbf24;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #2d5a44;
            transform: scale(1.02);
        }
        .comments-area {
            margin: 3rem 0;
            background: #f6f2ea;
            border-radius: 20px;
            padding: 28px 30px;
        }
        .comments-area h2 {
            border-left-color: #b45309;
            margin-top: 0;
        }
        .comment-form {
            display: grid;
            gap: 16px;
            margin: 1.5rem 0;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 18px;
            border: 2px solid #d6cec0;
            border-radius: 12px;
            font-size: 1rem;
            background: #fffcf7;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            outline: none;
            border-color: #f59e0b;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            justify-self: start;
            padding: 12px 36px;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #78350f;
        }
        .comment-list {
            margin-top: 2rem;
        }
        .comment-item {
            background: #fffcf7;
            border-radius: 14px;
            padding: 18px 22px;
            margin-bottom: 14px;
            border-left: 4px solid #d6cec0;
        }
        .comment-item strong {
            color: #1e3a2f;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #7c6b58;
        }
        .site-footer {
            background: #1e3a2f;
            color: #e7e2d8;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        @media(max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        .footer-inner h4 {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 14px;
            border-bottom: 2px solid #3d6b54;
            padding-bottom: 6px;
        }
        .footer-inner a {
            color: #d6cec0;
        }
        .footer-inner a:hover {
            color: #fbbf24;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            padding: 14px 18px;
            background: #2d5a44;
            border-radius: 12px;
            margin: 20px 0 10px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #fbbf24;
            font-weight: 500;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3d6b54;
            font-size: 0.9rem;
            color: #a8a090;
        }
        .copyright a {
            color: #fbbf24;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                border-top: 1px solid rgba(255, 255, 255, 0.15);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 8px;
            }
            .main-article h1 {
                font-size: 1.8rem;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
                padding: 0 12px;
            }
            .comments-area {
                padding: 18px 16px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .search-section button {
                justify-content: center;
            }
            .sidebar {
                position: static;
            }
        }
        .emoji-big {
            font-size: 1.4em;
            display: inline-block;
        }
        .text-brand {
            color: #b45309;
            font-weight: 600;
        }
        .tagline {
            font-size: 1.2rem;
            color: #5c5246;
            margin-bottom: 1.5rem;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #f59e0b, transparent);
            margin: 2rem 0;
        }
        .last-updated {
            display: inline-block;
            background: #e7e2d8;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5c5246;
        }
