* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f2eb;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 1.05rem;
            scroll-behavior: smooth;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(145deg, #1e2a2f 0%, #0f171c 100%);
            padding: 18px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f5e6c8;
            text-transform: uppercase;
            font-family: 'Georgia', 'Times New Roman', serif;
            text-shadow: 2px 2px 0 #b8860b;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd78c;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: #b0a090;
            display: block;
            font-family: 'Segoe UI', sans-serif;
            text-transform: none;
            text-shadow: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px 10px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #dcd5c5;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            background: #b8860b;
            color: #0f171c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5e6c8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e2a2f;
                padding: 18px 12px;
                border-radius: 16px;
                margin-top: 12px;
                border: 1px solid #3a4a52;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                border-radius: 12px;
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
        }
        .breadcrumb {
            background: #e8e2d8;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #d6cec0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 10px;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8a7e6e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6a5e4e;
        }
        .breadcrumb .current {
            color: #2d2a24;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2c3a42 0%, #1a252b 100%);
            padding: 48px 0 40px;
            color: #f0ece3;
            border-bottom: 3px solid #b8860b;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .hero h1 i {
            color: #b8860b;
            margin-right: 12px;
        }
        .hero .subtitle {
            font-size: 1.3rem;
            color: #c8bcac;
            max-width: 720px;
            margin-bottom: 20px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            font-size: 0.95rem;
            color: #b0a090;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #b8860b;
        }
        .last-updated {
            background: #b8860b20;
            padding: 4px 16px;
            border-radius: 30px;
            border: 1px solid #b8860b40;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 48px 0;
        }
        @media (max-width: 960px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        .content {
            min-width: 0;
        }
        .sidebar {
            background: #ece7de;
            border-radius: 20px;
            padding: 28px 22px;
            border: 1px solid #dcd3c6;
            align-self: start;
            position: sticky;
            top: 110px;
        }
        @media (max-width: 960px) {
            .sidebar {
                position: static;
            }
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #b8860b40;
            color: #1e2a2f;
        }
        h2 i {
            color: #b8860b;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2c3a42;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3d4a52;
        }
        p {
            margin-bottom: 18px;
        }
        .highlight {
            background: #faf0dc;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .blockquote {
            background: #e8e2d8;
            border-left: 4px solid #b8860b;
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3a34;
        }
        .blockquote cite {
            display: block;
            margin-top: 10px;
            font-style: normal;
            font-weight: 600;
            color: #8a7e6e;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 6px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            background: #e8e2d8;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #6a5e4e;
            background: #e8e2d8;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.98rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #1e2a2f;
            color: #f5e6c8;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e0d8cc;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5efe6;
        }
        .search-box {
            display: flex;
            gap: 8px;
            margin: 20px 0 28px;
            max-width: 560px;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #d6cec0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fcfaf7;
            transition: border 0.25s;
            outline: none;
        }
        .search-box input:focus {
            border-color: #b8860b;
        }
        .search-box button {
            padding: 14px 28px;
            background: #b8860b;
            border: none;
            border-radius: 40px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-box button:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .search-box button i {
            margin-right: 6px;
        }
        .comment-section,
        .rating-section {
            background: #fcfaf7;
            border-radius: 20px;
            padding: 28px 30px;
            margin: 36px 0;
            border: 1px solid #dcd3c6;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section input,
        .rating-section select {
            padding: 12px 18px;
            border: 2px solid #d6cec0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.25s;
            outline: none;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #b8860b;
        }
        .comment-section textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            padding: 14px 32px;
            background: #b8860b;
            border: none;
            border-radius: 40px;
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #9a7209;
            transform: scale(1.02);
        }
        .btn-submit i {
            margin-right: 8px;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #d6cec0;
            cursor: pointer;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #b8860b;
            transform: scale(1.15);
        }
        .sidebar h3 {
            font-size: 1.4rem;
            margin-top: 0;
            border-bottom: 2px solid #b8860b40;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            margin: 16px 0 0;
        }
        .sidebar ul li {
            padding: 8px 0;
            border-bottom: 1px solid #dcd3c650;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a i {
            color: #b8860b;
            font-size: 0.85rem;
            width: 20px;
            text-align: center;
        }
        .sidebar .quick-stats {
            margin: 20px 0 0;
            background: #e8e2d8;
            border-radius: 14px;
            padding: 16px 18px;
        }
        .sidebar .quick-stats p {
            margin: 6px 0;
            font-size: 0.95rem;
        }
        .sidebar .quick-stats span {
            font-weight: 700;
            color: #b8860b;
        }
        friend-link {
            display: block;
            background: #1e2a2f;
            color: #dcd5c5;
            padding: 28px 24px;
            border-radius: 20px;
            margin: 40px 0 20px;
            border-top: 4px solid #b8860b;
        }
        friend-link h3 {
            color: #f5e6c8;
            margin-top: 0;
            border-bottom: 1px solid #3a4a52;
            padding-bottom: 10px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            margin-top: 14px;
        }
        friend-link .friend-list a {
            color: #c8bcac;
            padding: 4px 12px;
            border-radius: 20px;
            background: #2c3a42;
            transition: background 0.2s, color 0.2s;
        }
        friend-link .friend-list a:hover {
            background: #b8860b;
            color: #0f171c;
            text-decoration: none;
        }
        footer {
            background: #0f171c;
            color: #b0a090;
            padding: 32px 0;
            text-align: center;
            border-top: 3px solid #b8860b;
            font-size: 0.92rem;
        }
        footer .copyright {
            letter-spacing: 0.5px;
        }
        footer .copyright i {
            color: #b8860b;
            margin: 0 4px;
        }
        footer a {
            color: #c8bcac;
        }
        footer a:hover {
            color: #ffd78c;
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero .subtitle {
                font-size: 1.05rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .sidebar {
                padding: 20px 16px;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 8px;
            }
            .blockquote {
                padding: 14px 16px;
            }
        }
        .anchor-offset {
            scroll-margin-top: 120px;
        }
