        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f1e8;
            color: #2d2a24;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #2e7d32;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1b5e20;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.3;
            color: #1b3b1b;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #4caf50;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #81c784;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1b3b1b, #2e7d32);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: #ffeb3b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #fff;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.7;
            display: block;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            color: #e8f5e9;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fff;
            color: #fff;
            font-size: 1.4rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb {
            background: #e8f5e9;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #c8e6c9;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.4rem;
            color: #6b8e6b;
        }
        .breadcrumb a {
            color: #2e7d32;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .search-section {
            background: #e8f5e9;
            padding: 1.2rem 0;
            border-bottom: 1px solid #c8e6c9;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #a5d6a7;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #2e7d32;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #2e7d32;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #1b5e20;
            transform: scale(1.02);
        }
        .main-content {
            flex: 1;
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 2.2rem 2.5rem;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #c8e6c9;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            padding: 0.8rem 1rem;
            background: #f1f8e9;
            font-size: 0.85rem;
            color: #3e5a3e;
            font-style: italic;
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px dashed #c8e6c9;
        }
        .comment-form,
        .score-form {
            display: grid;
            gap: 0.8rem;
            max-width: 600px;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .score-form input,
        .score-form select {
            padding: 0.7rem 1rem;
            border: 2px solid #dcedc8;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: #fafff5;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: #4caf50;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 1.8rem;
            background: #2e7d32;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            width: fit-content;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #1b5e20;
            transform: scale(1.02);
        }
        .site-footer {
            background: #1b3b1b;
            color: #dcedc8;
            padding: 2rem 0 1rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #a5d6a7;
            margin-top: 0;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 0.5rem 0;
        }
        friend-link a {
            color: #a5d6a7;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #fff;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2e7d32;
            font-size: 0.85rem;
            color: #9bbb9b;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(27, 59, 27, 0.97);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem 1.5rem;
                border-radius: 0 0 16px 16px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .content-body {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .content-body {
                padding: 1rem 0.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .nav-list li a {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }
        .highlight {
            background: #fff8e1;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .stat-box {
            background: #f1f8e9;
            border-left: 4px solid #4caf50;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .stat-box strong {
            color: #1b5e20;
        }
        .interview-block {
            background: #fff3e0;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid #ffe0b2;
        }
        .interview-block .q {
            font-weight: 700;
            color: #bf360c;
        }
        .interview-block .a {
            font-style: italic;
            color: #3e2723;
        }
        .btn-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #2e7d32;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s, background 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            background: #1b5e20;
            transform: translateY(-4px);
        }
        .last-update {
            font-size: 0.85rem;
            color: #6b8e6b;
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #e0e0e0;
        }
