* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --green: #1a7a3a;
            --green-dark: #0f4d24;
            --green-light: #27ae60;
            --gold: #f0c040;
            --gold-dark: #c99f2e;
            --bg: #fafaf5;
            --bg-card: #ffffff;
            --text: #1e1e1e;
            --text-light: #555;
            --border: #e0e0d8;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        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(--green);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--gold-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: var(--gold);
            font-size: 32px;
        }
        .my-logo:hover {
            color: var(--gold);
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            opacity: 0.8;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #fff;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 15px;
            transition: background 0.2s, color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.18);
            color: var(--gold);
        }
        .breadcrumb {
            background: #f0efe8;
            padding: 10px 0;
            font-size: 14px;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--green);
        }
        .breadcrumb a:hover {
            color: var(--gold-dark);
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #0f4d24 0%, #1a7a3a 50%, #2d9d4e 100%);
            color: #fff;
            padding: 60px 0 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '♠ ♥ ♦ ♣';
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 120px;
            opacity: 0.06;
            letter-spacing: 20px;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .hero h1 i {
            color: var(--gold);
        }
        .hero p {
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.9;
            line-height: 1.6;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            backdrop-filter: blur(4px);
        }
        .hero .last-updated i {
            margin-right: 6px;
        }
        .search-bar {
            max-width: 520px;
            margin: 24px auto 0;
            display: flex;
            background: #fff;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        }
        .search-bar input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 16px;
            outline: none;
            color: var(--text);
            background: transparent;
        }
        .search-bar button {
            background: var(--gold);
            border: none;
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 600;
            color: #1e1e1e;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: var(--gold-dark);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 50px 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .content-area h2 {
            font-size: 30px;
            font-weight: 700;
            color: var(--green-dark);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--gold);
            display: inline-block;
        }
        .content-area h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--green);
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .content-area h4 {
            font-size: 19px;
            font-weight: 600;
            color: #2e2e2e;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        .content-area p {
            margin-bottom: 18px;
            color: #2a2a2a;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 20px 24px;
            color: #2a2a2a;
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .content-area blockquote {
            border-left: 4px solid var(--gold);
            padding: 16px 24px;
            margin: 24px 0;
            background: #f8f6ee;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: #333;
        }
        .content-area blockquote strong {
            color: var(--green-dark);
        }
        .content-area .highlight-box {
            background: #f0f7f0;
            border: 1px solid #c8e0c8;
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 24px 0;
        }
        .content-area .highlight-box i {
            color: var(--green);
            margin-right: 8px;
        }
        .featured-image {
            border-radius: var(--radius);
            overflow: hidden;
            margin: 32px 0;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f0efe8;
            padding: 10px 16px;
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #f0efe8;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: var(--gold);
            font-size: 14px;
            width: 18px;
        }
        .rating-section,
        .comment-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .rating-section h3,
        .comment-section h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 32px;
            cursor: pointer;
            color: #ddd;
            transition: color 0.15s;
            margin: 12px 0 20px;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: var(--gold);
            transform: scale(1.1);
        }
        .rating-section form,
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .rating-section input,
        .rating-section textarea,
        .comment-section input,
        .comment-section textarea {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: var(--font);
            outline: none;
            transition: border 0.2s;
            background: #fcfcf9;
        }
        .rating-section input:focus,
        .rating-section textarea:focus,
        .comment-section input:focus,
        .comment-section textarea:focus {
            border-color: var(--green);
        }
        .rating-section textarea,
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            padding: 12px 28px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            align-self: flex-start;
        }
        .btn:hover {
            background: var(--green-dark);
            transform: translateY(-1px);
        }
        .btn-gold {
            background: var(--gold);
            color: #1e1e1e;
        }
        .btn-gold:hover {
            background: var(--gold-dark);
            color: #1e1e1e;
        }
        .footer {
            background: var(--green-dark);
            color: #ddd;
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 4px solid var(--gold);
        }
        .footer a {
            color: #b8d8b8;
        }
        .footer a:hover {
            color: var(--gold);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer h4 {
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 12px;
        }
        .footer ul {
            list-style: none;
            padding: 0;
        }
        .footer ul li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius);
            padding: 16px 20px;
            margin: 12px 0 4px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            font-size: 14px;
        }
        .friend-link a:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
            color: #999;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(0, 0, 0, 0.2);
                border-radius: var(--radius);
                padding: 12px 8px;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero p {
                font-size: 16px;
            }
            .search-bar {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-bar input {
                padding: 12px 18px;
            }
            .search-bar button {
                padding: 12px;
                justify-content: center;
            }
            .content-area h2 {
                font-size: 24px;
            }
            .content-area h3 {
                font-size: 20px;
            }
            .rating-section,
            .comment-section {
                padding: 20px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
            }
            .my-logo {
                font-size: 22px;
            }
            .my-logo small {
                font-size: 11px;
            }
            .container {
                padding: 0 14px;
            }
            .star-rating {
                font-size: 28px;
            }
        }
        .nav-menu {
            transition: display 0.2s;
        }
        .fa-solid,
        .fa-regular {
            pointer-events: none;
        }
        .btn i,
        .nav-menu a i {
            pointer-events: auto;
        }
