        *,
        *::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: #f5f3ee;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #a4602a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #6d3d1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e1b16;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            border-bottom: 4px solid #c07c4a;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            border-left: 5px solid #c07c4a;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #1e1b16 0%, #2d281f 100%);
            color: #f5f3ee;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d68a, #c07c4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #c07c4a;
            margin-right: 0.3rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #c07c4a;
            color: #f5d68a;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #c07c4a;
            color: #1e1b16;
        }
        .primary-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e8dfd0;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .primary-nav a:hover {
            background: #c07c4a;
            color: #1e1b16;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.4rem;
        }
        .breadcrumb-wrap {
            background: #e8dfd0;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d4c9b8;
        }
        .breadcrumb-wrap ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap ol li {
            margin: 0;
        }
        .breadcrumb-wrap ol li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8a7a66;
            font-weight: 700;
        }
        .breadcrumb-wrap a {
            color: #6d4d2e;
        }
        .breadcrumb-wrap a:hover {
            color: #a4602a;
        }
        .hero {
            background: linear-gradient(135deg, #2d281f 0%, #4a3f30 100%);
            padding: 2.5rem 0 2rem;
            color: #f5f3ee;
            margin-bottom: 2rem;
            border-bottom: 5px solid #c07c4a;
        }
        .hero h1 {
            color: #f5d68a;
            border-bottom: none;
            padding-bottom: 0;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            color: #d4c9b8;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
            font-size: 0.95rem;
            color: #b8aa96;
        }
        .hero-meta i {
            margin-right: 0.4rem;
            color: #c07c4a;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .search-section form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 240px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #d4c9b8;
            border-radius: 40px;
            font-size: 1rem;
            background: #f9f7f3;
            transition: 0.25s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #c07c4a;
            box-shadow: 0 0 0 4px rgba(192, 124, 74, 0.15);
        }
        .search-section button {
            background: #c07c4a;
            border: none;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #9e6437;
            transform: translateY(-2px);
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            margin-top: 0;
            border-bottom: 2px solid #e8dfd0;
            padding-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebe3;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a::before {
            content: "⛏";
            font-size: 0.85rem;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0ebe3;
            padding: 0.7rem 1.2rem;
            font-size: 0.9rem;
            color: #4a3f30;
            font-style: italic;
        }
        .highlight-box {
            background: #f9f7f3;
            border-left: 5px solid #c07c4a;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: #6d3d1a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f0ebe3;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
        }
        .stat-card i {
            font-size: 1.8rem;
            color: #c07c4a;
            margin-bottom: 0.4rem;
            display: block;
        }
        .stat-card span {
            display: block;
            font-size: 0.9rem;
            color: #6d5a44;
        }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 3px solid #e8dfd0;
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d4c9b8;
            cursor: pointer;
            margin: 0.8rem 0 1.2rem;
        }
        .rating-stars i.active {
            color: #f5b342;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f5b342;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #d4c9b8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #f9f7f3;
            resize: vertical;
            min-height: 100px;
            transition: 0.25s;
            outline: none;
        }
        .comment-box textarea:focus {
            border-color: #c07c4a;
            box-shadow: 0 0 0 4px rgba(192, 124, 74, 0.1);
        }
        .comment-box button,
        .rating-form button {
            background: #2d281f;
            color: #f5d68a;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 0.6rem;
        }
        .comment-box button:hover,
        .rating-form button:hover {
            background: #c07c4a;
            color: #1e1b16;
        }
        .link-list-compact a {
            padding: 0.3rem 0;
            display: block;
            font-size: 0.95rem;
        }
        .site-footer {
            background: #1e1b16;
            color: #d4c9b8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 5px solid #c07c4a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f5d68a;
            margin-top: 0;
        }
        .footer-inner a {
            color: #b8aa96;
        }
        .footer-inner a:hover {
            color: #f5d68a;
        }
        .footer-bottom {
            border-top: 1px solid #3a342b;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            margin: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #2d281f;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
                padding: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2d281f;
                padding: 0.8rem 0;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.2rem;
                border-bottom: 1px solid #3a342b;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hero {
                padding: 1.8rem 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-section {
                padding: 1.2rem;
            }
            .main-content {
                padding: 1rem 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        .tag {
            display: inline-block;
            background: #f0ebe3;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #6d5a44;
            margin: 0.2rem;
        }
        .last-updated {
            display: inline-block;
            background: #e8dfd0;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a3f30;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #c07c4a;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
            opacity: 0.8;
            z-index: 99;
        }
        .btn-top:hover {
            opacity: 1;
            transform: translateY(-4px);
            text-decoration: none;
            color: #fff;
        }
