* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #c0392b;
            --primary-dark: #a12b1f;
            --secondary: #f39c12;
            --accent: #e74c3c;
            --bg: #fdf8f3;
            --bg-card: #ffffff;
            --text: #1e1e2a;
            --text-light: #4a4a5a;
            --border: #e0d6cc;
            --gold: #d4a017;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            --radius: 14px;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3a 100%);
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7b731, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f7b731;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #f0e6d8;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: 0.25s;
            white-space: nowrap;
            display: block;
        }
        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.13);
            color: #f7b731;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e6d8;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #a99;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb .active {
            color: var(--primary);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #f9f0e9 0%, #fdf6f0 100%);
            padding: 48px 0 36px;
            border-bottom: 2px solid #f0e4d8;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: #1a1a2e;
            margin-bottom: 16px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #c0392b, #e67e22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin-bottom: 12px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            font-size: 0.95rem;
            color: #6a5a4a;
            margin-top: 12px;
        }
        .hero-meta i {
            margin-right: 6px;
            color: var(--primary);
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 50px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 30px;
            margin-bottom: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .section-card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: #1a1a2e;
            border-left: 5px solid var(--secondary);
            padding-left: 16px;
        }
        .section-card h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 24px 0 12px;
            color: #2d1b3a;
        }
        .section-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 18px 0 8px;
            color: #3a2a4a;
        }
        .section-card p {
            margin-bottom: 16px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .section-card ul,
        .section-card ol {
            margin: 10px 0 18px 24px;
            color: var(--text-light);
        }
        .section-card li {
            margin-bottom: 6px;
        }
        .highlight-box {
            background: #f9f3eb;
            border-left: 5px solid var(--gold);
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
            font-style: normal;
        }
        .highlight-box strong {
            color: #1a1a2e;
        }
        .stat-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
        }
        .feature-img-wrapper {
            margin: 24px 0 18px;
            border-radius: var(--radius);
            overflow: hidden;
            background: #ece4db;
        }
        .feature-img-wrapper img {
            width: 100%;
            object-fit: cover;
        }
        .feature-img-wrapper .img-caption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #6a5a4a;
            background: #f4ede6;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 22px 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .sidebar-widget h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #1a1a2e;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
        }
        .sidebar-links a {
            display: block;
            padding: 7px 0;
            border-bottom: 1px dashed #ece4db;
            font-size: 0.95rem;
            color: var(--text-light);
            transition: 0.2s;
        }
        .sidebar-links a:hover {
            color: var(--primary);
            padding-left: 6px;
            text-decoration: none;
        }
        .sidebar-links a i {
            margin-right: 8px;
            color: var(--gold);
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 12px 0 4px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            background: #faf6f0;
        }
        .search-form input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 22px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 90px;
            background: #faf6f0;
            transition: 0.2s;
        }
        .comment-form textarea:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 0.9rem;
            background: #faf6f0;
        }
        .comment-form .form-row input:focus {
            border-color: var(--secondary);
            outline: none;
        }
        .comment-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 10px 28px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
            margin-top: 10px;
        }
        .comment-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-start;
            font-size: 1.8rem;
            margin: 8px 0 14px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd2c4;
            transition: 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7b731;
        }
        .rating-submit {
            background: var(--secondary);
            color: #1a1a2e;
            border: none;
            border-radius: 30px;
            padding: 8px 24px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-submit:hover {
            background: #e6a80f;
            transform: scale(1.02);
        }
        footer {
            background: #1a1a2e;
            color: #d4ccc4;
            padding: 36px 0 20px;
            margin-top: 30px;
            border-top: 4px solid var(--secondary);
        }
        footer .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        footer h4 {
            color: #f0e6d8;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer a {
            color: #b8aa9a;
        }
        footer a:hover {
            color: #f7b731;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2a2a3e;
            padding-top: 18px;
            margin-top: 18px;
            font-size: 0.85rem;
            text-align: center;
            color: #8a7a6a;
        }
        .copyright strong {
            color: #d4ccc4;
        }
        @media (max-width: 900px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .hero h1 {
                font-size: 2rem;
            }
            footer .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 16px 0 20px;
                border-top: 1px solid #2a2a3e;
                margin-top: 8px;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.35rem;
            }
            .section-card h2 {
                font-size: 1.4rem;
                padding-left: 12px;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
            }
        }
        .btn-primary {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .tag {
            display: inline-block;
            background: #ede4da;
            color: #4a3a2a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-right: 6px;
        }
        .text-small {
            font-size: 0.88rem;
            color: #8a7a6a;
        }
        .mt-12 {
            margin-top: 12px;
        }
        .mb-12 {
            margin-bottom: 12px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
