        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f7f0;
            color: #2d3a2a;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #3a7d34;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #1f4f1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e3a1d, #2b5a28);
            padding: 18px 0 14px;
            border-bottom: 4px solid #f5c542;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #f9e076);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 66, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0f7e8;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.07);
            transition: 0.2s;
            font-size: 0.92rem;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: #f5c542;
            color: #1e3a1d;
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-menu a i {
            margin-right: 5px;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #5a6b55;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #3a7d34;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #7a8f72;
        }
        .hero-image-wrap {
            margin: 20px 0 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #cbdcc0;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a3a18;
            margin: 28px 0 12px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1f4f1a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #cde0c5;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #f5c542;
            border-radius: 4px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2b5a28;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #3a6d35;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2d3a2a;
        }
        .content-section {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 34px;
            margin-bottom: 32px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5ede0;
        }
        .content-section p:last-child {
            margin-bottom: 0;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 10px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 20px;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #2b5a28;
            color: #f5f7f0;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e5ede0;
            background: #fafcfa;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f0f7ec;
        }
        .highlight-box {
            background: #f5fbed;
            border-left: 6px solid #f5c542;
            padding: 20px 24px;
            border-radius: 0 14px 14px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #1f4f1a;
        }
        .interview-block {
            background: #f8f5ea;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #ece3cf;
            font-style: italic;
        }
        .interview-block .interviewee {
            font-style: normal;
            font-weight: 600;
            color: #1f4f1a;
            margin-top: 12px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 24px 0 20px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border: 2px solid #cde0c5;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            background: #fafcfa;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #3a7d34;
            box-shadow: 0 0 0 4px rgba(58, 125, 52, 0.12);
        }
        .search-form button {
            background: #3a7d34;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #1f4f1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(58, 125, 52, 0.25);
        }
        .comment-box,
        .rating-box {
            background: #fafcfa;
            border: 1px solid #e5ede0;
            border-radius: 16px;
            padding: 24px 28px;
            margin-top: 20px;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #cde0c5;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            background: #fff;
            transition: 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #3a7d34;
            box-shadow: 0 0 0 4px rgba(58, 125, 52, 0.08);
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border: 2px solid #cde0c5;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            margin-bottom: 12px;
            transition: 0.2s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #3a7d34;
        }
        .comment-box button,
        .rating-box button {
            background: #3a7d34;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 8px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #1f4f1a;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4d9ce;
            cursor: pointer;
            margin: 10px 0 14px;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5c542;
            transform: scale(1.1);
        }
        .site-footer {
            background: #1a3a18;
            color: #d6e3ce;
            padding: 40px 0 28px;
            margin-top: 50px;
            border-top: 6px solid #f5c542;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 220px;
        }
        .footer-col h4 {
            color: #f5c542;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-col a {
            color: #bcd6b0;
            display: block;
            padding: 3px 0;
            font-size: 0.92rem;
        }
        .footer-col a:hover {
            color: #f5c542;
            text-decoration: none;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #2f542c;
            padding-top: 24px;
            margin-top: 28px;
            font-size: 0.85rem;
            color: #9bb390;
        }
        .footer-bottom a {
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 4px 0;
            font-size: 0.92rem;
        }
        friend-link a {
            color: #bcd6b0;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6f8a66;
            margin: 8px 0 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #f5c542;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                text-align: center;
                padding: 10px 16px;
                white-space: normal;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 20px 18px;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 10px;
            }
            .hero-image-wrap img {
                max-height: 240px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .footer-inner {
                flex-direction: column;
                gap: 18px;
            }
        }
        .emoji-lg {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .text-highlight {
            background: linear-gradient(to right, #f5c54233, #f5c54222);
            padding: 0 4px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #e5ede0;
            color: #1f4f1a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 4px;
        }
