        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3ed;
            color: #1e1e1e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a5632;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b8960f;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            color: #0f2b1a;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-top: 0;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.25em;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --primary: #1a5632;
            --primary-dark: #0f2b1a;
            --accent: #ffd700;
            --accent-dark: #b8960f;
            --light: #f5f3ed;
            --white: #ffffff;
            --gray: #6b7280;
            --border: #d1d5db;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f2b1a 0%, #1a5632 50%, #0f2b1a 100%);
            color: var(--white);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: var(--accent);
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--accent);
        }
        .my-logo span {
            font-size: 0.75rem;
            font-weight: 400;
            color: #ccc;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-list li a:hover {
            background: rgba(255, 215, 0, 0.18);
            color: var(--accent);
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 0.3rem;
            font-size: 0.8rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s ease;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .breadcrumb {
            background: var(--white);
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            color: var(--accent-dark);
        }
        .breadcrumb .current {
            color: var(--gray);
        }
        .hero {
            background: linear-gradient(135deg, #0f2b1a, #1a5632);
            color: var(--white);
            padding: 2.5rem 0 2rem;
            text-align: center;
        }
        .hero h1 {
            color: var(--accent);
            font-size: clamp(2rem, 5vw, 3.4rem);
            margin-bottom: 0.75rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 1.25rem;
            color: #e5e7eb;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #a3b8a8;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .hero .meta i {
            margin-right: 0.3rem;
            color: var(--accent);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.75rem;
            margin-bottom: 1.75rem;
            transition: box-shadow 0.2s ease;
        }
        .card:hover {
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image {
            border-radius: var(--radius);
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            background: #f9f7f2;
            font-size: 0.9rem;
            color: var(--gray);
            font-style: italic;
            border-top: 1px solid var(--border);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th,
        table td {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }
        table th {
            background: var(--primary);
            color: var(--white);
            font-weight: 600;
        }
        table tr:nth-child(even) {
            background: #f9f7f2;
        }
        table tr:hover td {
            background: #f0ede5;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.25rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.2s ease;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--accent-dark);
            outline: none;
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
        }
        .search-form button:hover {
            background: #0f2b1a;
            transform: scale(1.02);
        }
        .search-form button i {
            margin-right: 0.4rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border 0.2s ease;
        }
        .comment-form textarea:focus {
            border-color: var(--accent-dark);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 0.75rem 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form .form-row input:focus {
            border-color: var(--accent-dark);
            outline: none;
        }
        .comment-form .submit-btn {
            padding: 0.7rem 2rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .comment-form .submit-btn:hover {
            background: #0f2b1a;
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 2rem;
            cursor: pointer;
            color: #d1d5db;
            transition: color 0.15s ease;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.15s ease;
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffd700;
        }
        .rating-form .submit-btn {
            margin-top: 0.75rem;
            padding: 0.6rem 1.8rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .rating-form .submit-btn:hover {
            background: #0f2b1a;
        }
        .sidebar .card {
            padding: 1.25rem;
        }
        .sidebar .card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .sidebar .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .link-list li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ede5;
            margin-bottom: 0;
        }
        .sidebar .link-list li:last-child {
            border-bottom: none;
        }
        .sidebar .link-list a {
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar .link-list a i {
            font-size: 0.75rem;
            color: var(--accent-dark);
        }
        .site-footer {
            background: #0f2b1a;
            color: #d1d5db;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #a3b8a8;
        }
        .site-footer a:hover {
            color: var(--accent);
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: var(--accent);
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.35rem;
        }
        .footer-links a {
            font-size: 0.92rem;
        }
        .footer-bottom {
            border-top: 1px solid #2a4a3a;
            margin-top: 2rem;
            padding-top: 1.25rem;
            text-align: center;
            font-size: 0.88rem;
        }
        .footer-bottom .copyright {
            color: #9ca3af;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.25rem 0.5rem 0.25rem 0;
            padding: 0.35rem 1rem;
            background: #2a4a3a;
            border-radius: 20px;
            font-size: 0.88rem;
            color: #e5e7eb;
            transition: background 0.2s ease, color 0.2s ease;
        }
        friend-link a:hover {
            background: var(--accent);
            color: #0f2b1a;
            text-decoration: none;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2b1a;
                padding: 1rem 0;
                border-radius: 0 0 12px 12px;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            }
            .nav-list.active {
                display: flex;
            }
            .nav-list li a {
                padding: 0.75rem 1.5rem;
                border-radius: 0;
                font-size: 1rem;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero {
                padding: 1.75rem 0 1.25rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .card {
                padding: 1.25rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: unset;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: unset;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            table th,
            table td {
                padding: 0.5rem 0.6rem;
                font-size: 0.82rem;
            }
        }
        .text-accent {
            color: var(--accent-dark);
        }
        .text-muted {
            color: var(--gray);
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .highlight {
            background: #fef9e0;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .btn-outline {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 8px;
            color: var(--primary);
            font-weight: 600;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
        }
