        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf7f2;
            color: #2e241f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b34a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7d2f1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1f1a16 0%, #2d241e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b34a2c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6d3;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5e6d3, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            letter-spacing: 1px;
            display: block;
            -webkit-text-fill-color: #b34a2c;
            color: #b34a2c;
            font-weight: 400;
        }
        .my-logo a {
            text-decoration: none;
            color: inherit;
            -webkit-text-fill-color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5e6d3;
            cursor: pointer;
            padding: 4px 8px;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e8d5c4;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: #b34a2c;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1f1a16;
                padding: 16px 0 20px;
                border-top: 1px solid #3a2d25;
                margin-top: 12px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                border-radius: 0;
                width: 100%;
                text-align: left;
                border-left: 3px solid transparent;
            }
            .main-nav a:hover {
                border-left-color: #b34a2c;
                background: rgba(179, 74, 44, 0.15);
            }
        }
        .breadcrumb {
            background: #efe9e2;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dcd3ca;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7a6e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7d5a44;
        }
        .breadcrumb .current {
            color: #2e241f;
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            background: linear-gradient(to bottom, #f5ede6, #faf7f2);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1f1a16;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
        .hero h1 span {
            color: #b34a2c;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            color: #6a5a4e;
            font-size: 0.95rem;
            margin-top: 8px;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #b34a2c;
        }
        .last-updated {
            font-weight: 600;
            color: #4a3a2e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            padding: 40px 0 60px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f1a16;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #d4a373;
        }
        .main-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d241e;
            margin: 32px 0 12px;
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #4a3a2e;
            margin: 24px 0 8px;
        }
        .main-content p {
            margin-bottom: 18px;
            color: #3a2e26;
        }
        .main-content .highlight-box {
            background: #f0e8e0;
            border-left: 5px solid #b34a2c;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-content .highlight-box strong {
            color: #b34a2c;
        }
        .main-content ul {
            margin: 12px 0 20px 24px;
            list-style: square;
        }
        .main-content li {
            margin-bottom: 6px;
        }
        .main-content .link-list {
            background: #fffcf8;
            border: 1px solid #e5dbd2;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 16px;
        }
        .main-content .link-list a {
            display: block;
            padding: 4px 0;
            font-weight: 500;
        }
        .main-content .link-list a i {
            margin-right: 8px;
            color: #b34a2c;
            font-size: 0.8rem;
        }
        @media (max-width: 600px) {
            .main-content .link-list {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e5dbd2;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            background: #fffcf8;
            font-size: 0.9rem;
            color: #6a5a4e;
            font-style: italic;
            border-top: 1px solid #e5dbd2;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #fffcf8;
            border: 1px solid #e5dbd2;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1f1a16;
            margin-bottom: 16px;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #f0e8e0;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #dcd3ca;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #faf7f2;
            transition: border 0.25s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b34a2c;
        }
        .search-form button {
            background: #b34a2c;
            border: none;
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #7d2f1a;
        }
        .feedback-section {
            margin-top: 48px;
            padding-top: 32px;
            border-top: 3px solid #d4a373;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 20px;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dcd3ca;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fffcf8;
            transition: border 0.25s;
            outline: none;
            font-family: inherit;
            margin-bottom: 12px;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #b34a2c;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #b34a2c;
            border: none;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #7d2f1a;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            direction: rtl;
            font-size: 1.8rem;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #dcd3ca;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a831;
        }
        .site-footer {
            background: #1f1a16;
            color: #d4c5b8;
            padding: 40px 0 24px;
            margin-top: 48px;
            border-top: 4px solid #b34a2c;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid #3a2d25;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f5e6d3;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner a {
            color: #d4a373;
        }
        .footer-inner a:hover {
            color: #f5e6d3;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.85rem;
            color: #8a7a6e;
        }
        .copyright strong {
            color: #d4a373;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b34a2c;
            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(179, 74, 44, 0.4);
            transition: transform 0.3s, background 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #7d2f1a;
        }
        @media (max-width: 600px) {
            .scroll-top {
                bottom: 16px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
        .author-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #f0e8e0;
            padding: 12px 20px;
            border-radius: 40px;
            margin: 24px 0 8px;
            font-size: 0.9rem;
        }
        .author-badge i {
            font-size: 1.6rem;
            color: #b34a2c;
        }
        .author-badge strong {
            color: #1f1a16;
        }
