        *,
        *::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, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f7f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b53b2c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7f2a1f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
            padding: 18px 0;
            border-bottom: 4px solid #b53b2c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5e9d8;
            text-shadow: 0 2px 8px rgba(181, 59, 44, 0.3);
            transition: transform 0.2s ease;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f5e9d8;
        }
        .my-logo i {
            color: #d4a373;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a373;
            color: #d4a373;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 163, 115, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e8ddd0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            color: #d4a373;
            border-bottom-color: #d4a373;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 5px;
            font-size: 0.85rem;
            color: #b53b2c;
        }
        .breadcrumb-wrap {
            background: #efebe6;
            padding: 10px 0;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.88rem;
            color: #5a4e42;
        }
        .breadcrumb a {
            color: #7a2e22;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8a7a6a;
        }
        .hero-section {
            position: relative;
            margin: 32px 0 40px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #1f1b2e 0%, #2a1f3a 100%);
            padding: 40px 36px;
            color: #f5ede4;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        }
        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
            color: #f5e9d8;
        }
        .hero-section h1 i {
            color: #d4a373;
            margin-right: 10px;
        }
        .hero-section p {
            font-size: 1.15rem;
            max-width: 780px;
            color: #d9cec0;
            margin-bottom: 12px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 32px;
            margin-top: 20px;
            font-size: 0.92rem;
            color: #b8aa9a;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #d4a373;
        }
        .hero-img {
            margin-top: 28px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 20px;
            color: #1a1a2e;
            border-left: 5px solid #b53b2c;
            padding-left: 18px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 16px;
            color: #2c2a42;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: #3d2e24;
        }
        .main-article p {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.02rem;
        }
        .main-article ul,
        .main-article ol {
            margin: 16px 0 24px 28px;
            color: #2c2c2c;
        }
        .main-article li {
            margin-bottom: 10px;
        }
        .main-article blockquote {
            border-left: 4px solid #b53b2c;
            background: #f0ebe4;
            padding: 18px 24px;
            margin: 28px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d2e24;
            font-size: 1.08rem;
        }
        .highlight-box {
            background: #e9e2d9;
            padding: 24px 28px;
            border-radius: 16px;
            margin: 32px 0;
            border-left: 6px solid #b53b2c;
        }
        .highlight-box strong {
            color: #7a2e22;
        }
        .inline-link {
            font-weight: 600;
            color: #b53b2c;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #f0ebe4;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #1a1a2e;
            margin-bottom: 16px;
            border-bottom: 2px solid #d4a373;
            padding-bottom: 8px;
        }
        .sidebar-link-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .sidebar-link-list a {
            display: block;
            padding: 6px 0;
            color: #3d2e24;
            font-weight: 500;
            border-bottom: 1px solid #ddd6cc;
            transition: all 0.2s;
        }
        .sidebar-link-list a:hover {
            color: #b53b2c;
            padding-left: 6px;
            text-decoration: none;
            border-bottom-color: #b53b2c;
        }
        .sidebar-link-list a i {
            margin-right: 8px;
            color: #b53b2c;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 20px 0 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d4c8b8;
            border-radius: 60px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b53b2c;
        }
        .search-form button {
            background: #b53b2c;
            border: none;
            border-radius: 60px;
            padding: 12px 22px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #7f2a1f;
        }
        .comment-section,
        .rating-section {
            background: #f0ebe4;
            border-radius: 20px;
            padding: 32px 32px;
            margin: 48px 0 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .comment-section h2,
        .rating-section h2 {
            font-size: 1.7rem;
            color: #1a1a2e;
            border-left: 5px solid #b53b2c;
            padding-left: 18px;
            margin-bottom: 24px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d4c8b8;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 14px;
            background: #fff;
            font-family: inherit;
            transition: border 0.2s;
            outline: none;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #b53b2c;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .comment-form .row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .comment-form button,
        .rating-form button {
            background: #b53b2c;
            color: #fff;
            border: none;
            padding: 14px 34px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #7f2a1f;
            transform: scale(1.01);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4a373;
            cursor: pointer;
            margin: 12px 0 20px;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #b53b2c;
        }
        .rating-form select {
            padding: 12px 18px;
            border: 2px solid #d4c8b8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            margin-bottom: 16px;
            outline: none;
            width: 100%;
            max-width: 240px;
        }
        .featured-image-wrap {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap figcaption {
            background: #efebe6;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #5a4e42;
            text-align: center;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8bdb0;
            padding: 48px 0 32px;
            margin-top: 60px;
            border-top: 4px solid #b53b2c;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #f5e9d8;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid #b53b2c;
            padding-bottom: 6px;
            display: inline-block;
        }
        .footer-grid a {
            color: #b8aa9a;
            display: block;
            margin-bottom: 8px;
            font-size: 0.92rem;
        }
        .footer-grid a:hover {
            color: #d4a373;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid #2c2a42;
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.88rem;
            color: #8a7a6a;
        }
        .footer-bottom a {
            color: #b8aa9a;
        }
        .footer-bottom a:hover {
            color: #d4a373;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            color: #d4a373;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f5e9d8;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 18px 14px;
                border-radius: 0 0 16px 16px;
                margin-top: 8px;
                border-top: 2px solid #b53b2c;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #2c2a42;
                width: 100%;
            }
            .hero-section {
                padding: 28px 20px;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .comment-form .row-2 {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .main-article h2 {
                font-size: 1.5rem;
            }
            .main-article h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                border-radius: 60px;
            }
        }
        .tag {
            display: inline-block;
            background: #d4a373;
            color: #1a1a2e;
            border-radius: 60px;
            padding: 2px 14px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 4px;
        }
        .last-update {
            font-size: 0.9rem;
            color: #8a7a6a;
            margin-top: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            background: #f9f6f1;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .table-wrap th {
            background: #1a1a2e;
            color: #f5e9d8;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .table-wrap td {
            padding: 10px 16px;
            border-bottom: 1px solid #ddd6cc;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #efebe6;
        }
