* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a3c34;
            --secondary: #e8b84b;
            --accent: #d14b2a;
            --bg: #faf8f3;
            --text: #1e1e1e;
            --light: #f0ede4;
            --radius: 12px;
            --shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 20px;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a33a1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            display: block;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 16px;
        }
        header {
            background: var(--primary);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
            border-radius: 0 0 var(--radius) var(--radius);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: var(--secondary);
        }
        .my-logo i {
            font-size: 2rem;
            color: #fff;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: var(--secondary);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #666;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb span {
            color: #999;
        }
        .hero {
            background: linear-gradient(135deg, #1a3c34 0%, #2a5a4a 100%);
            color: #fff;
            padding: 48px 32px;
            border-radius: var(--radius);
            margin: 20px 0 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: var(--secondary);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.92;
            max-width: 720px;
            margin: 0 auto 12px;
        }
        .hero .meta-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            margin-top: 8px;
            backdrop-filter: blur(4px);
        }
        section {
            margin: 48px 0;
        }
        .section-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 4px solid var(--secondary);
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a3c34;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a5a4a;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
        .highlight {
            background: #fef6e0;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: var(--light);
            padding: 18px 12px;
            border-radius: var(--radius);
            text-align: center;
            font-weight: 600;
        }
        .stat-item .num {
            font-size: 2.2rem;
            color: var(--accent);
            display: block;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            background: var(--light);
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 600px;
            margin: 18px 0;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-box button:hover {
            background: #0f2a24;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            margin: 24px 0;
        }
        .comment-section textarea,
        .rating-section input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
            resize: vertical;
        }
        .comment-section textarea:focus,
        .rating-section input:focus {
            border-color: var(--primary);
        }
        .comment-section .row,
        .rating-section .row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
            align-items: center;
        }
        .comment-section button,
        .rating-section button {
            padding: 10px 28px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #a33a1e;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: var(--secondary);
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px 20px;
            margin: 16px 0;
            padding: 0;
            list-style: none;
        }
        .link-list li a {
            display: block;
            padding: 8px 12px;
            background: var(--light);
            border-radius: 8px;
            transition: background 0.2s, transform 0.1s;
        }
        .link-list li a:hover {
            background: #e2dcd0;
            transform: translateX(4px);
            text-decoration: none;
        }
        footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.85);
            padding: 36px 20px 20px;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 56px;
        }
        footer a {
            color: var(--secondary);
        }
        footer a:hover {
            color: #f5d67a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .footer-grid h4 {
            color: var(--secondary);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-weight: 500;
        }
        friend-link a {
            margin: 0 6px 0 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-top: 12px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 12px;
            }
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #0f2a24;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                padding: 32px 18px;
            }
            .section-card {
                padding: 20px 16px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box input {
                min-width: 120px;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
