        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f3ee;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #1e6f1e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #3b9e3b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1a3a1a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #2d572c;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #2d572c;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1e3a1e;
            color: #f5f3ee;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #f5f3ee, #b8d4b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #c0d6b5;
            color: #c0d6b5;
            letter-spacing: 0.3px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #e8f0e3;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            background: #2d572c;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5f3ee;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2d572c;
        }
        .breadcrumb {
            background: #e4e0d8;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ccc6bc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a6e5a;
        }
        .breadcrumb a {
            color: #1e6f1e;
        }
        .breadcrumb .current {
            color: #3a4a3a;
            font-weight: 500;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        @media(max-width:900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 18px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }
        .article-body p,
        .article-body li {
            font-size: 1.05rem;
        }
        .featured-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-img-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #5a6e5a;
            text-align: center;
            padding: 0.5rem 0 0;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #eef4ea;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2d572c;
            font-weight: 500;
            margin-bottom: 1.2rem;
        }
        .inline-link-set {
            background: #f8f6f2;
            padding: 1.2rem 1.6rem;
            border-radius: 14px;
            margin: 1.8rem 0;
            border-left: 5px solid #2d572c;
        }
        .inline-link-set a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #d4dcc8;
            padding-bottom: 0.4rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 0.7rem;
            border-bottom: 1px dashed #e5e0d8;
            padding-bottom: 0.5rem;
        }
        .sidebar-card li a {
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 0.7rem 1rem;
            border: 2px solid #d4dcc8;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            background: #faf9f6;
        }
        .search-form input[type="text"]:focus {
            border-color: #2d572c;
        }
        .search-form button {
            background: #1e3a1e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #2d572c;
            transform: scale(1.02);
        }
        .comment-section,
        .score-section {
            background: #fff;
            padding: 1.8rem 2rem;
            border-radius: 18px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            margin: 2.5rem 0;
        }
        .comment-section h2,
        .score-section h2 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e3a1e;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #d4dcc8;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #faf9f6;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2d572c;
            outline: none;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            background: #1e3a1e;
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn-primary:hover {
            background: #2d572c;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #d4c8a8;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .score-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2d572c;
            margin-left: 0.6rem;
        }
        friend-link {
            display: block;
            background: #1e2a1e;
            color: #d4dcc8;
            padding: 1.8rem 2rem;
            border-radius: 16px;
            margin: 2.5rem 0 1.5rem;
            text-align: center;
        }
        friend-link a {
            color: #b8d4b0;
            font-weight: 500;
            margin: 0 0.8rem;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #e8f0e3;
            text-decoration: underline;
        }
        friend-link::before {
            content: "🌍 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #e8f0e3;
            margin-bottom: 0.8rem;
            letter-spacing: 0.5px;
        }
        .site-footer {
            background: #141e14;
            color: #b8c8b0;
            padding: 2rem 0;
            text-align: center;
            border-top: 4px solid #2d572c;
            margin-top: 2rem;
        }
        .site-footer p {
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #d4dcc8;
        }
        @media(max-width:768px) {
            .site-header .header-inner {
                flex-wrap: nowrap;
            }
            .nav-wrap {
                order: 3;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                display: none;
                margin-top: 1rem;
                background: #1a301a;
                padding: 1rem;
                border-radius: 12px;
            }
            .nav-wrap.open {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.6rem;
            }
            .nav-list li a {
                display: block;
                padding: 0.5rem 0.8rem;
            }
            .hamburger {
                display: inline-block;
            }
            .article-body {
                padding: 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .sidebar {
                order: 2;
            }
            .main-grid {
                gap: 1.5rem;
            }
            .comment-section,
            .score-section {
                padding: 1.2rem;
            }
            friend-link {
                padding: 1.2rem;
            }
            .inline-link-set {
                padding: 1rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .article-body {
                padding: 0.8rem;
            }
            .search-form button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .emoji-big {
            font-size: 1.5rem;
        }
        .highlight {
            background: #f0f5e8;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .schema-hidden {
            display: none;
        }
