        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --grass-green: #5b8c3a;
            --dirt-brown: #8b5e3c;
            --stone-gray: #7a7a7a;
            --sky-blue: #87ceeb;
            --deep-slate: #2d2d2d;
            --gold: #f5c542;
            --wood-brown: #b5651d;
            --water-blue: #3b7dd8;
            --off-white: #f7f5f0;
            --text-dark: #1e1e1e;
            --text-light: #f0efe9;
            --bg-light: #faf8f4;
            --bg-card: #ffffff;
            --radius: 12px;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            --font-sans: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --font-mono: 'Courier New', monospace;
            --transition: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            padding-bottom: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        a {
            color: var(--dirt-brown);
            text-decoration: underline;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--grass-green);
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            color: var(--deep-slate);
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5em;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid var(--grass-green);
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a1e, #2a552a);
            color: var(--text-light);
            padding: 0.6rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
            transition: transform var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.03);
            color: #ffd966;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            color: #ccc;
            display: block;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 215, 0, 0.15);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color var(--transition), color var(--transition);
        }
        .nav-menu li a:hover {
            border-bottom-color: var(--gold);
            color: var(--gold);
        }
        .breadcrumb {
            background: #e8e3d8;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: var(--dirt-brown);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #888;
        }
        .search-bar {
            background: var(--off-white);
            padding: 1.2rem 0;
            border-bottom: 1px solid #ddd;
        }
        .search-bar form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-bar input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid #ccc;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .search-bar input[type="text"]:focus {
            border-color: var(--grass-green);
        }
        .search-bar button {
            padding: 0.7rem 1.6rem;
            background: var(--grass-green);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
        }
        .search-bar button:hover {
            background: #4a7530;
            transform: scale(1.02);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2fr 1fr;
            }
            .content-grid .article-col {
                order: 1;
            }
            .content-grid .sidebar-col {
                order: 2;
            }
        }
        .article-col article {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 1.5rem;
            box-shadow: var(--shadow);
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0ede6;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #555;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #eef5e8;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #3f5a2a;
            margin-bottom: 1.2rem;
        }
        .emoji-big {
            font-size: 1.3em;
            margin-right: 0.2em;
        }
        .sidebar-col {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem 1.2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 3px solid var(--grass-green);
            padding-bottom: 0.4rem;
            margin-bottom: 1rem;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 0.35rem 0;
            border-bottom: 1px dashed #e0dcd0;
        }
        .link-list li a {
            text-decoration: none;
            font-weight: 500;
        }
        .link-list li a:hover {
            text-decoration: underline;
        }
        .rating-area {
            background: #f0ede6;
            border-radius: var(--radius);
            padding: 1.2rem 1.2rem 1.6rem;
            margin-top: 0.8rem;
        }
        .rating-area h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4d4d4;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            resize: vertical;
            min-height: 80px;
            transition: border-color var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--grass-green);
            outline: none;
        }
        .comment-form .btn-submit {
            background: var(--dirt-brown);
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-form .btn-submit:hover {
            background: #6f4c2e;
        }
        .site-footer {
            background: var(--deep-slate);
            color: #ccc;
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .site-footer .container {
                grid-template-columns: 2fr 1fr;
            }
        }
        .site-footer a {
            color: #b8d4ae;
        }
        .site-footer a:hover {
            color: var(--gold);
        }
        .footer-copy {
            text-align: center;
            border-top: 1px solid #444;
            padding-top: 1.2rem;
            font-size: 0.85rem;
            grid-column: 1 / -1;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 1.2rem;
            border-radius: var(--radius);
            margin-top: 0.5rem;
        }
        .friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                background: #1e3a1e;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                width: 100%;
                padding: 0.5rem 0;
            }
            .article-col article {
                padding: 1.2rem 1rem;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
            .search-bar form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-bar button {
                width: 100%;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .highlight-box {
            background: #eef5e8;
            border-left: 5px solid var(--grass-green);
            padding: 1rem 1.4rem;
            border-radius: 0 10px 10px 0;
            margin: 1.4rem 0;
        }
        .highlight-box.amber {
            background: #fcf3e0;
            border-left-color: var(--gold);
        }
        .highlight-box.blue {
            background: #e3f0fc;
            border-left-color: var(--water-blue);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.6rem 0.8rem;
            border: 1px solid #ddd;
            text-align: left;
        }
        th {
            background: var(--grass-green);
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f7f5f0;
        }
        .btn-score {
            background: var(--water-blue);
            color: #fff;
            border: none;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .btn-score:hover {
            background: #2a5fa8;
        }
        .tag {
            display: inline-block;
            background: #e0dcd0;
            padding: 0.15rem 0.7rem;
            border-radius: 12px;
            font-size: 0.75rem;
            color: #444;
            margin-right: 0.3rem;
        }
