* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3f0;
            color: #1e1a17;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #9b4b2e;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #6d3320;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #1a1a1a;
            padding: 16px 0;
            border-bottom: 4px solid #d4a373;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f0e6d3;
            text-decoration: none;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #d4a373, #f0e6d3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 2px;
            font-weight: 300;
        }
        nav.main-nav {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #ddd;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            font-weight: 500;
        }
        nav.main-nav a:hover {
            background: #333;
            color: #f0e6d3;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .breadcrumb {
            background: #e8e3dd;
            padding: 12px 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: #9b4b2e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #999;
        }
        main {
            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;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .article-body .subhead {
            font-size: 1.15rem;
            color: #6d6d6d;
            margin-bottom: 28px;
            font-weight: 400;
            border-left: 4px solid #d4a373;
            padding-left: 18px;
        }
        .article-body .meta {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .article-body .meta i {
            margin-right: 6px;
        }
        .article-body h2 {
            font-size: 2.0rem;
            font-weight: 700;
            color: #2c2c2c;
            margin-top: 52px;
            margin-bottom: 18px;
            line-height: 1.3;
            border-bottom: 2px solid #e0d6cb;
            padding-bottom: 8px;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d3d3d;
            margin-top: 36px;
            margin-bottom: 14px;
            line-height: 1.35;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4d4d4d;
            margin-top: 26px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #2e2a26;
        }
        .article-body strong {
            color: #1a1a1a;
            font-weight: 700;
        }
        .article-body em {
            font-style: italic;
            color: #6d4c3a;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
            color: #2e2a26;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body blockquote {
            border-left: 5px solid #d4a373;
            background: #f0ebe4;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #3d352e;
        }
        .article-body blockquote strong {
            color: #9b4b2e;
        }
        .article-body .feature-img {
            margin: 32px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .article-body .feature-img img {
            width: 100%;
            border-radius: 12px;
        }
        .article-body .feature-img figcaption {
            padding: 12px 16px;
            background: #f0ebe4;
            font-size: 0.9rem;
            color: #6d6d6d;
            text-align: center;
            border-radius: 0 0 12px 12px;
        }
        .sidebar {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 18px;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            color: #5a3e2e;
            text-decoration: none;
            font-weight: 500;
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #e0d6cb;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar ul li a:hover {
            color: #9b4b2e;
            padding-left: 6px;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 40px 0 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .search-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.2s;
            background: #fafafa;
        }
        .search-form input[type="text"]:focus {
            border-color: #d4a373;
            outline: none;
            background: #fff;
        }
        .search-form button {
            padding: 14px 28px;
            background: #9b4b2e;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #7a3a22;
            transform: translateY(-1px);
        }
        .comments-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 24px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .comments-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            background: #fafafa;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #d4a373;
            outline: none;
            background: #fff;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafafa;
            transition: border-color 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #d4a373;
            outline: none;
            background: #fff;
        }
        .comment-form button {
            padding: 12px 32px;
            background: #9b4b2e;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 12px;
        }
        .comment-form button:hover {
            background: #7a3a22;
            transform: translateY(-1px);
        }
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 24px 0 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .rating-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2.2rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 16px;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover {
            color: #f0c040;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f0c040;
        }
        .rating-section button {
            padding: 12px 32px;
            background: #9b4b2e;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .rating-section button:hover {
            background: #7a3a22;
            transform: translateY(-1px);
        }
        .rating-result {
            margin-top: 12px;
            font-weight: 600;
            color: #5a3e2e;
        }
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 48px 0 32px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media(max-width:768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        footer h4 {
            color: #f0e6d3;
            font-size: 1.2rem;
            margin-bottom: 16px;
            font-weight: 600;
        }
        footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.2s;
        }
        footer a:hover {
            color: #f0e6d3;
        }
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        footer ul li {
            margin-bottom: 8px;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 8px;
            color: #d4a373;
        }
        friend-link a:hover {
            color: #f0e6d3;
        }
        .copyright {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
            text-align: center;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                margin-top: 12px;
                background: #1a1a1a;
                padding: 12px 0;
                border-top: 1px solid #333;
            }
            nav.main-nav.open {
                display: flex;
            }
            nav.main-nav a {
                padding: 10px 16px;
                width: 100%;
            }
            .article-body h1 {
                font-size: 1.8rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.25rem;
            }
            .sidebar {
                position: static;
                margin-top: 32px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: auto;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .article-body h1 {
                font-size: 1.5rem;
            }
            .rating-stars {
                font-size: 1.8rem;
            }
        }
        .text-muted {
            color: #888;
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .highlight {
            background: #faf0e6;
            padding: 2px 6px;
            border-radius: 4px;
        }
        .badge {
            display: inline-block;
            background: #d4a373;
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
