        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green-deep: #0a2e1a;
            --green-mid: #1a6b3c;
            --green-light: #2ea85e;
            --gold: #f5b342;
            --gold-light: #fcd68a;
            --cream: #faf6ed;
            --charcoal: #1e1e1e;
            --text: #2c2c2c;
            --text-light: #555;
            --white: #ffffff;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            --radius: 12px;
            --transition: 0.3s ease;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--cream);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--green-mid);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: var(--green-deep);
            padding: 0.8rem 0;
            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: 0.6rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: var(--green-light);
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: var(--gold-light);
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: var(--green-light);
            display: none;
        }
        @media(min-width:600px) {
            .my-logo span {
                display: inline;
            }
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            transition: color var(--transition);
        }
        .nav-toggle:hover {
            color: var(--white);
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: var(--cream);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color var(--transition), color var(--transition);
            white-space: nowrap;
        }
        .main-nav a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        .main-nav a.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--green-deep);
                padding: 1rem;
                border-radius: 0 0 var(--radius) var(--radius);
                gap: 0.8rem;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.05rem;
                padding: 0.4rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
        }
        .breadcrumb {
            background: var(--white);
            padding: 0.7rem 0;
            border-bottom: 1px solid #e8e0d4;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: var(--green-mid);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span {
            margin: 0 0.3rem;
        }
        .hero {
            background: linear-gradient(145deg, var(--green-deep) 0%, #0d3d22 100%);
            padding: 3rem 0 2.5rem;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '♠ ♥ ♦ ♣';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 8rem;
            opacity: 0.04;
            color: var(--gold);
            letter-spacing: 2rem;
            pointer-events: none;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--gold);
            margin-bottom: 0.6rem;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 0.8rem;
            color: #d4d4d4;
        }
        .hero .tagline {
            display: inline-block;
            background: var(--gold);
            color: var(--green-deep);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        @media(max-width:600px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        .search-bar {
            background: var(--white);
            padding: 1.8rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .search-bar form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-bar input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .search-bar input:focus {
            border-color: var(--green-mid);
        }
        .search-bar button {
            background: var(--green-mid);
            color: white;
            border: none;
            padding: 0 1.6rem;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-bar button:hover {
            background: var(--green-light);
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media(min-width:992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .article-body {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow);
        }
        .article-body h2 {
            font-size: 1.7rem;
            color: var(--green-deep);
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--gold);
            display: inline-block;
        }
        .article-body h3 {
            font-size: 1.3rem;
            color: var(--green-mid);
            margin: 1.8rem 0 0.6rem;
        }
        .article-body h4 {
            font-size: 1.1rem;
            color: var(--charcoal);
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 1rem;
            font-size: 1.02rem;
        }
        .article-body p:last-child {
            margin-bottom: 0;
        }
        .article-body .feature-img {
            margin: 1.5rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .highlight-box {
            background: #f0f7f0;
            border-left: 4px solid var(--green-light);
            padding: 1.2rem 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.2rem 0;
        }
        .highlight-box.gold {
            background: #fef8ec;
            border-left-color: var(--gold);
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.2rem;
        }
        .inline-list li::before {
            content: '♠ ';
            color: var(--green-mid);
            font-weight: bold;
        }
        @media(max-width:600px) {
            .inline-list {
                grid-template-columns: 1fr;
            }
            .article-body {
                padding: 1.2rem;
            }
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.4rem 1.6rem;
            box-shadow: var(--shadow);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: var(--green-deep);
            margin-bottom: 0.8rem;
            border-bottom: 2px solid var(--gold);
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ebe0;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--text);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-card ul li a:hover {
            color: var(--green-mid);
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            font-size: 0.8rem;
        }
        .rating-area {
            margin: 2rem 0 1.5rem;
            padding: 1.5rem;
            background: #f8f5ef;
            border-radius: var(--radius);
            border: 1px solid #e8e0d4;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .rating-area .stars i.active {
            color: var(--gold);
        }
        .rating-area .stars i:hover {
            color: var(--gold-light);
        }
        .rating-area form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 0.8rem;
        }
        .rating-area form input,
        .rating-area form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: var(--font);
            outline: none;
            transition: border-color var(--transition);
        }
        .rating-area form input:focus,
        .rating-area form textarea:focus {
            border-color: var(--green-mid);
        }
        .rating-area form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-area form button {
            background: var(--green-mid);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
            align-self: flex-start;
        }
        .rating-area form button:hover {
            background: var(--green-light);
        }
        .rating-area .row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .rating-area .score-display {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--green-deep);
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px solid #e8e0d4;
            padding-top: 1rem;
        }
        .site-footer {
            background: var(--green-deep);
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media(min-width:768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .site-footer h4 {
            color: var(--gold);
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }
        .site-footer a {
            color: #bbb;
        }
        .site-footer a:hover {
            color: var(--gold);
        }
        .site-footer ul {
            list-style: none;
            padding: 0;
        }
        .site-footer ul li {
            padding: 0.2rem 0;
        }
        friend-link {
            display: block;
            margin-top: 1.5rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.85rem;
            color: #888;
        }
        .copyright strong {
            color: var(--gold-light);
        }
        @media(max-width:480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .rating-area .stars {
                font-size: 1.5rem;
            }
        }
        :focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 2px;
        }
        ::selection {
            background: var(--gold);
            color: var(--green-deep);
        }
        @media(min-width:992px) {
            .sidebar {
                position: sticky;
                top: 100px;
                align-self: start;
            }
        }
        @media(prefers-color-scheme:dark) {
            :root {
                --cream: #f5efe6;
            }
        }
