*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --green-dark: #1a4a1a;
            --green-mid: #2d8a2d;
            --green-bright: #4caf50;
            --green-light: #a5d6a7;
            --brown-dark: #3e2723;
            --brown-mid: #6d4c41;
            --brown-light: #a1887f;
            --stone-light: #e8e0d0;
            --stone-mid: #c8b8a0;
            --bg-cream: #faf8f2;
            --text-dark: #1a1a1a;
            --text-mid: #444;
            --white: #fff;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: 0.3s ease;
            --font-main: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: var(--green-mid);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--green-bright);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, var(--green-dark), #0d2f0d);
            padding: 12px 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(--white);
            background: linear-gradient(135deg, var(--green-bright), #81c784);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: var(--green-light);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            color: var(--stone-light);
            -webkit-text-fill-color: initial;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 6px;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: rgba(255, 255, 255, 0.85);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition);
            text-decoration: none;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: var(--stone-light);
            padding: 10px 0;
            border-bottom: 1px solid var(--stone-mid);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: var(--text-mid);
        }
        .breadcrumb a {
            color: var(--green-mid);
        }
        .breadcrumb a:hover {
            color: var(--green-dark);
        }
        .breadcrumb .sep {
            color: #999;
        }
        .breadcrumb .current {
            color: var(--text-dark);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1b3a1b 0%, #2d5a2d 40%, #1a4a1a 100%);
            color: var(--white);
            padding: 48px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--bg-cream);
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        }
        .hero h1 i {
            color: var(--green-light);
            margin-right: 10px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            margin: 0 auto 20px;
            opacity: 0.9;
            color: #d7e8d7;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 8px;
            backdrop-filter: blur(4px);
        }
        .hero .badge i {
            color: #ffd54f;
            margin-right: 6px;
        }
        .last-updated {
            font-size: 0.85rem;
            color: var(--stone-mid);
            margin-top: 8px;
            display: block;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .main-wrap {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .content-area section {
            margin-bottom: 48px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 36px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .content-area h2 {
            font-size: 1.9rem;
            color: var(--green-dark);
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--green-light);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-area h2 i {
            color: var(--green-mid);
            font-size: 1.6rem;
        }
        .content-area h3 {
            font-size: 1.35rem;
            color: var(--brown-dark);
            margin: 28px 0 12px;
            font-weight: 700;
        }
        .content-area h3 i {
            color: var(--brown-mid);
            margin-right: 8px;
            font-size: 1.1rem;
        }
        .content-area h4 {
            font-size: 1.1rem;
            color: var(--text-mid);
            margin: 20px 0 8px;
            font-weight: 600;
        }
        .content-area p {
            margin-bottom: 16px;
            color: var(--text-mid);
            font-size: 1rem;
        }
        .content-area p strong {
            color: var(--text-dark);
            font-weight: 700;
        }
        .content-area ul,
        .content-area ol {
            margin: 12px 0 18px 24px;
            color: var(--text-mid);
        }
        .content-area li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f0f7ec;
            border-left: 4px solid var(--green-mid);
            padding: 18px 22px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #f5faf0, #eaf5e3);
            padding: 18px 14px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(76, 175, 80, 0.2);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--green-dark);
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-mid);
            margin-top: 4px;
        }
        .stat-card i {
            font-size: 1.6rem;
            color: var(--green-mid);
            margin-bottom: 6px;
        }
        .img-wrap {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            background: #eee;
        }
        .img-wrap img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            background: #ddd;
        }
        .img-wrap .caption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-mid);
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }
        .interview-block {
            background: #f5f0eb;
            border-radius: 10px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #ddd0c0;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--brown-dark);
        }
        .interview-block .speaker i {
            color: var(--brown-mid);
            margin-right: 8px;
        }
        .interview-block p {
            margin-bottom: 10px;
        }
        .interactive-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 32px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
            margin-bottom: 48px;
        }
        .interactive-section h2 {
            font-size: 1.6rem;
            color: var(--green-dark);
            margin-bottom: 16px;
            border-bottom: 2px solid var(--green-light);
            padding-bottom: 8px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: border var(--transition);
            background: #fafafa;
        }
        .search-form input:focus {
            border-color: var(--green-mid);
            background: var(--white);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--green-mid);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--green-dark);
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            font-family: var(--font-main);
            transition: border var(--transition);
            background: #fafafa;
        }
        .comment-box textarea:focus {
            border-color: var(--green-mid);
            background: var(--white);
            outline: none;
        }
        .comment-box .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-box .row input {
            flex: 1;
            min-width: 160px;
            padding: 10px 16px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fafafa;
            transition: border var(--transition);
        }
        .comment-box .row input:focus {
            border-color: var(--green-mid);
            outline: none;
            background: var(--white);
        }
        .comment-box .row button {
            padding: 10px 26px;
            background: var(--green-mid);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-box .row button:hover {
            background: var(--green-dark);
        }
        .score-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            margin-top: 12px;
        }
        .score-box .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color var(--transition);
        }
        .score-box .stars i {
            transition: color var(--transition);
        }
        .score-box .stars i.active,
        .score-box .stars i:hover {
            color: #ffb300;
        }
        .score-box .stars i:hover~i {
            color: #ccc;
        }
        .score-box button {
            padding: 10px 26px;
            background: var(--brown-mid);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .score-box button:hover {
            background: var(--brown-dark);
        }
        .score-box .avg {
            font-size: 1.1rem;
            color: var(--text-mid);
        }
        .score-box .avg strong {
            color: var(--text-dark);
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 22px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--green-dark);
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--green-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ece4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            color: var(--text-mid);
            font-size: 0.95rem;
            display: block;
            padding: 4px 0;
            transition: all var(--transition);
        }
        .sidebar-card a:hover {
            color: var(--green-mid);
            padding-left: 6px;
            text-decoration: none;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: var(--green-light);
            font-size: 0.8rem;
        }
        .site-footer {
            background: var(--green-dark);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 20px;
            margin-top: 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: var(--green-light);
            font-size: 1.05rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-grid li {
            padding: 4px 0;
        }
        .footer-grid a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        .footer-grid a:hover {
            color: var(--green-bright);
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 16px 0;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        friend-link::before {
            content: "🤝 Friend Links";
            display: block;
            font-weight: 700;
            color: var(--green-light);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.8);
            margin-right: 16px;
            display: inline-block;
            padding: 2px 0;
        }
        friend-link a:hover {
            color: var(--green-bright);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .copyright strong {
            color: rgba(255, 255, 255, 0.8);
        }
        @media (max-width: 992px) {
            .main-wrap {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.3);
                padding: 12px 0;
                border-radius: 0 0 12px 12px;
                margin-top: 12px;
                gap: 2px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 18px;
                border-radius: 0;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .content-area section {
                padding: 20px 18px;
            }
            .content-area h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 20px 18px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
            .score-box {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.7rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex {
            display: flex;
        }
        .gap-10 {
            gap: 10px;
        }
        .align-center {
            align-items: center;
        }
        .emoji-big {
            font-size: 1.4em;
        }
