        * {
            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: #f7f5f0;
            color: #2d2a24;
            line-height: 1.7;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a2e22;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1f1b16;
            margin-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2d2a24;
            margin: 2.5rem 0 0.8rem;
            border-left: 6px solid #c44536;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            color: #3d352c;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem;
            color: #4a4137;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #4a4137;
            font-weight: 500;
        }
        .small {
            font-size: 0.9rem;
            color: #6b5e50;
        }
        .site-header {
            background: linear-gradient(135deg, #1f1b16 0%, #3d352c 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #f7d98c;
            text-shadow: 2px 2px 0 #c44536;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f7d98c;
        }
        .my-logo span {
            color: #f0a35e;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            display: block;
            color: #b7aa9a;
            letter-spacing: 1px;
            text-shadow: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f7d98c;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 6px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8dfd0;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f7d98c;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
        .breadcrumb {
            background: #ede8df;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d9d0c3;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #8a7a6a;
        }
        .breadcrumb a {
            color: #6b5e50;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb .current {
            color: #3d352c;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2d2a24 0%, #1f1b16 100%);
            color: #f7f5f0;
            padding: 48px 0 40px;
            border-radius: 0 0 48px 48px;
            margin-bottom: 32px;
        }
        .hero h1 {
            color: #f7d98c;
            font-size: 2.8rem;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
            color: #b7aa9a;
            font-size: 0.95rem;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f0a35e;
        }
        .hero .last-updated {
            background: rgba(255, 255, 255, 0.08);
            padding: 4px 14px;
            border-radius: 30px;
            display: inline-block;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            background: #ede8df;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image .caption {
            padding: 12px 20px;
            background: #1f1b16;
            color: #d9d0c3;
            font-size: 0.9rem;
            font-style: italic;
        }
        .featured-image .caption i {
            color: #f0a35e;
            margin-right: 6px;
        }
        .highlight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 24px 0 32px;
        }
        .highlight-card {
            background: #fff;
            border-radius: 16px;
            padding: 22px 18px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d6;
            transition: transform 0.25s, box-shadow 0.25s;
            text-align: center;
        }
        .highlight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
        .highlight-card i {
            font-size: 2.4rem;
            color: #c44536;
            margin-bottom: 10px;
        }
        .highlight-card h4 {
            margin: 0 0 4px;
            font-size: 1.1rem;
        }
        .highlight-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c44536;
        }
        .content-section {
            background: #fff;
            border-radius: 24px;
            padding: 32px 36px;
            margin-bottom: 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8df;
        }
        .content-section.alt {
            background: #faf8f4;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 10px 18px;
            margin: 16px 0 20px;
        }
        .link-grid a {
            display: inline-block;
            padding: 6px 10px;
            background: #f7f5f0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        .link-grid a:hover {
            background: #ede8df;
            text-decoration: none;
        }
        .link-grid a i {
            margin-right: 6px;
            color: #c44536;
            font-size: 0.85rem;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 500px;
            margin: 18px 0 10px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d9d0c3;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-box input:focus {
            border-color: #c44536;
        }
        .search-box button {
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 0 24px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #8a2e22;
        }
        .comment-rating-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 24px 0 10px;
        }
        @media (max-width:700px) {
            .comment-rating-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d9d0c3;
            border-radius: 16px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
            background: #fff;
            font-family: inherit;
        }
        .comment-area textarea:focus {
            border-color: #c44536;
        }
        .comment-area .btn,
        .rating-area .btn {
            background: #c44536;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-area .btn:hover,
        .rating-area .btn:hover {
            background: #8a2e22;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d9d0c3;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f0a35e;
            transform: scale(1.1);
        }
        .star-rating i:hover~i {
            color: #d9d0c3;
        }
        friend-link {
            display: block;
            padding: 16px 0 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #ede8df;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #d9d0c3;
            text-decoration: none;
        }
        friend-link a i {
            margin-right: 6px;
            color: #c44536;
        }
        .site-footer {
            background: #1f1b16;
            color: #b7aa9a;
            padding: 40px 0 32px;
            margin-top: 40px;
            border-radius: 32px 32px 0 0;
        }
        .site-footer .copyright {
            border-top: 1px solid #3d352c;
            padding-top: 20px;
            margin-top: 16px;
            font-size: 0.9rem;
            text-align: center;
        }
        .site-footer .copyright strong {
            color: #f7d98c;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                background: rgba(255, 255, 255, 0.04);
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 20px 18px;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width:480px) {
            .hero {
                border-radius: 0 0 24px 24px;
                padding: 28px 0 24px;
            }
            .highlight-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .tag {
            background: #ede8df;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #6b5e50;
        }
        .badge {
            background: #c44536;
            color: #fff;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
        }
