*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a3c34;
            --primary-light: #2a5a4e;
            --secondary: #d4a054;
            --secondary-light: #e8c47a;
            --accent: #c0392b;
            --bg: #faf8f2;
            --bg-card: #ffffff;
            --text: #2c2c2c;
            --text-light: #5a5a5a;
            --border: #dcd4c4;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .container {
            max-width: var(--max-width);
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }
        header {
            background: var(--primary);
            color: #fff;
            padding: 0 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
            width: 100%;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
            width: 100%;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--secondary-light);
            transform: scale(1.02);
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--secondary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #f0ede8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--secondary-light);
        }
        .breadcrumb {
            background: #f0ece2;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
            width: 100%;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--primary-light);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .sep {
            color: #aaa;
            margin: 0 4px;
        }
        main {
            padding: 40px 0 60px;
            flex: 1;
            width: 100%;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: var(--secondary);
            margin-right: 10px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--secondary);
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d4a3e;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: var(--text);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: 400;
            margin-bottom: 24px;
            padding: 16px 20px;
            background: #f4efe6;
            border-left: 4px solid var(--secondary);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 28px;
            padding: 12px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .meta-info i {
            margin-right: 6px;
            color: var(--secondary);
        }
        .featured-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 24px 0 32px;
            box-shadow: var(--shadow);
            object-fit: cover;
            height: auto;
            max-height: 500px;
            background: #e8e2d4;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }
        .card h3 {
            margin-top: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }
        .list-styled {
            padding-left: 24px;
            margin-bottom: 16px;
        }
        .list-styled li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .list-styled li::marker {
            color: var(--secondary);
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1rem;
        }
        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 60, 52, 0.25);
        }
        .btn-secondary {
            background: var(--secondary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--secondary-light);
            box-shadow: 0 6px 20px rgba(212, 160, 84, 0.3);
        }
        .search-box {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 20px 0 28px;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            min-width: 180px;
            background: #fff;
        }
        .search-box input:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(212, 160, 84, 0.15);
        }
        .search-box button {
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .search-box button:hover {
            background: var(--primary-light);
        }
        .comment-form,
        .score-form {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            margin-top: 16px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form input,
        .score-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            margin-bottom: 12px;
            font-family: var(--font);
            background: #fff;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(212, 160, 84, 0.12);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .btn,
        .score-form .btn {
            width: auto;
            min-width: 160px;
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
            margin-bottom: 12px;
        }
        .score-stars i.active {
            color: var(--secondary);
        }
        .score-stars i:hover {
            color: var(--secondary-light);
        }
        .friend-link {
            display: block;
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 2px solid var(--border);
        }
        .friend-link h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .friend-link .links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 12px 0;
        }
        .friend-link .links a {
            color: var(--primary-light);
            text-decoration: none;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: var(--transition);
        }
        .friend-link .links a:hover {
            border-bottom-color: var(--secondary);
            color: var(--primary);
        }
        footer {
            background: var(--primary);
            color: #ddd;
            padding: 32px 0 20px;
            text-align: center;
            width: 100%;
            margin-top: 40px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        footer p {
            color: #ccc;
            font-size: 0.95rem;
            margin: 0;
        }
        footer a {
            color: var(--secondary-light);
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 8px;
        }
        @media (max-width: 768px) {
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 8px;
                gap: 4px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 10px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
            }
            .container {
                padding: 0 16px;
            }
            .card {
                padding: 18px 18px;
            }
            .meta-info {
                flex-direction: column;
                gap: 8px;
            }
            .breadcrumb .container {
                font-size: 0.8rem;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .highlight {
            background: #fdf5e2;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .section-divider {
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            border-radius: 4px;
            margin: 48px 0 32px;
            opacity: 0.3;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding: 12px 20px;
            margin: 20px 0;
            background: #f4efe6;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--text-light);
        }
        blockquote strong {
            color: var(--primary);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.98rem;
        }
        table th {
            background: var(--primary);
            color: #fff;
            padding: 12px 16px;
            text-align: left;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid var(--border);
        }
        table tr:hover td {
            background: #f8f4ec;
        }
