* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f7f3ee;
            color: #2e241f;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b4532e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7a3620;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e130c 0%, #3a2518 100%);
            padding: 18px 0 12px;
            border-bottom: 4px solid #c97e5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #f5ded2;
            text-shadow: 0 2px 10px rgba(201, 126, 90, 0.3);
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f5ded2;
        }
        .my-logo span {
            color: #d4946e;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list a {
            color: #efe3db;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list a:hover {
            background: rgba(201, 126, 90, 0.25);
            color: #f7d9c9;
            text-decoration: none;
        }
        .nav-list .active a {
            background: #c97e5a;
            color: #1e130c;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5ded2;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.08);
        }
        .breadcrumb-wrap {
            background: #f0e8e1;
            padding: 10px 0 8px;
            border-bottom: 1px solid #ddd2c8;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.85rem;
            color: #5f4b3f;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b08b78;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5240;
        }
        .breadcrumb .current {
            color: #3a2518;
            font-weight: 600;
        }
        .main-wrap {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1e130c;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .article-body .subhead {
            font-size: 1.1rem;
            color: #6e5140;
            margin-bottom: 28px;
            border-left: 4px solid #c97e5a;
            padding-left: 18px;
        }
        .article-body .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 30px;
            font-size: 0.9rem;
            color: #7a624f;
            margin-bottom: 30px;
            padding-bottom: 16px;
            border-bottom: 1px solid #ddd2c8;
        }
        .article-body .meta-bar i {
            margin-right: 6px;
            color: #b4532e;
        }
        .article-body .last-updated {
            font-weight: 600;
            color: #3a2518;
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2a1a12;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 2px solid #dbb8a6;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3a2518;
            margin-top: 34px;
            margin-bottom: 12px;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4f3628;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #2e241f;
        }
        .article-body p strong {
            color: #1e130c;
            font-weight: 700;
        }
        .article-body .highlight-box {
            background: #f0e4db;
            border-left: 6px solid #c97e5a;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
            font-style: italic;
        }
        .article-body .highlight-box strong {
            font-style: normal;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 26px;
            color: #2e241f;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .featured-image-wrap {
            margin: 32px 0 28px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            background: #f0e8e1;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #5f4b3f;
            text-align: center;
        }
        .link-inline-list {
            background: #f6ede7;
            padding: 20px 24px;
            border-radius: 14px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        .link-inline-list a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .link-inline-list a i {
            margin-right: 6px;
            color: #b4532e;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #fffaf6;
            border-radius: 14px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            border: 1px solid #e7dbd2;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2a1a12;
            margin-bottom: 14px;
            border-bottom: 1px solid #ddd2c8;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 10px;
        }
        .sidebar-card ul li a {
            font-weight: 500;
            font-size: 0.92rem;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #f0e5dd;
        }
        .sidebar-card ul li a i {
            margin-right: 8px;
            width: 18px;
            color: #b4532e;
        }
        .search-form {
            display: flex;
            gap: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid #d5c6bc;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fcf9f6;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #c97e5a;
        }
        .search-form button {
            background: #b4532e;
            border: none;
            color: #fff;
            padding: 0 18px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #8f4122;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #fffaf6;
            border-radius: 14px;
            padding: 28px 24px;
            margin-top: 40px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            border: 1px solid #e7dbd2;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2a1a12;
            margin-bottom: 16px;
        }
        .comment-form textarea,
        .rating-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d5c6bc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fcf9f6;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .rating-form textarea:focus {
            border-color: #c97e5a;
        }
        .comment-form .form-row,
        .rating-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
            align-items: center;
        }
        .comment-form input,
        .rating-form input {
            padding: 10px 16px;
            border: 1px solid #d5c6bc;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fcf9f6;
            outline: none;
            flex: 1 1 180px;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .rating-form input:focus {
            border-color: #c97e5a;
        }
        .comment-form button,
        .rating-form button {
            background: #b4532e;
            border: none;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #8f4122;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d5c6bc;
            cursor: pointer;
            margin: 8px 0;
        }
        .star-rating i.active {
            color: #e8a83e;
        }
        .star-rating i:hover {
            color: #e8a83e;
            transform: scale(1.1);
        }
        .site-footer {
            background: #1e130c;
            color: #ddd2c8;
            padding: 44px 0 28px;
            border-top: 4px solid #c97e5a;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
        }
        .footer-col h4 {
            color: #f5ded2;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.92rem;
            color: #cbb7ab;
        }
        .footer-col a:hover {
            color: #f5ded2;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        friend-link {
            display: block;
            margin-top: 12px;
            padding-top: 16px;
            border-top: 1px solid #3a2518;
        }
        friend-link a {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 6px;
            color: #cbb7ab;
        }
        friend-link a:hover {
            color: #f5ded2;
        }
        .copyright {
            margin-top: 32px;
            padding-top: 18px;
            border-top: 1px solid #3a2518;
            text-align: center;
            font-size: 0.85rem;
            color: #8f7a6b;
        }
        .copyright strong {
            color: #cbb7ab;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a1a12;
                padding: 16px 12px;
                border-radius: 0 0 16px 16px;
                margin-top: 8px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 4px 8px;
            }
            .link-inline-list {
                flex-direction: column;
                gap: 8px;
            }
            .comment-form .form-row,
            .rating-form .form-row {
                flex-direction: column;
            }
            .comment-form input,
            .rating-form input {
                flex: 1 1 auto;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .article-body h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .nav-list a {
                font-size: 0.85rem;
                padding: 8px 12px;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
