        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f7f2;
            color: #1e2a1e;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1f6e2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #b8860b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0f2b0f;
            font-weight: 700;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #c0d6b3;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1f4a1f;
        }
        h4 {
            font-size: 1.15rem;
            color: #2d5e2d;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #0f3b0f;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            padding: 0 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        header {
            padding: 1.2rem 0 0.6rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #e2ecd9;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #1f6e2e, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #b8860b;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.2rem 1rem;
            margin: 0;
        }
        .nav-list a {
            font-weight: 600;
            padding: 0.4rem 0.2rem;
            color: #1e3a1e;
            font-size: 0.95rem;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: #b8860b;
            transition: width 0.25s;
            margin-top: 2px;
        }
        .nav-list a:hover::after,
        .nav-list a:focus-visible::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e3a1e;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e2ecd9;
        }
        .hamburger:focus-visible {
            outline: 3px solid #b8860b;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #4d6b4d;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #8aa87a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #1f6e2e;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        .hero-img {
            margin: 1.2rem 0 0.8rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .hero-caption {
            font-size: 0.9rem;
            color: #4d6b4d;
            text-align: center;
            margin-top: -0.4rem;
            margin-bottom: 1.6rem;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.2rem 0 1.8rem;
            background: #f0f5ec;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #1e3a1e;
        }
        .search-form input[type="text"] {
            flex: 1 1 220px;
            padding: 0.6rem 1rem;
            border: 2px solid #c0d6b3;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
            outline: none;
        }
        .search-form button {
            background: #1f6e2e;
            color: #fff;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .search-form button:focus-visible {
            outline: 3px solid #b8860b;
            outline-offset: 2px;
        }
        .section {
            margin: 2.4rem 0;
        }
        .section-intro {
            font-size: 1.1rem;
            background: #f6faf3;
            padding: 1.2rem 1.6rem;
            border-radius: 16px;
            border-left: 6px solid #b8860b;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.6rem;
            margin: 1.6rem 0;
        }
        .feature-card {
            background: #f9fbf7;
            padding: 1.4rem 1.2rem;
            border-radius: 16px;
            border: 1px solid #dfebd4;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .feature-card i {
            font-size: 1.8rem;
            color: #b8860b;
            margin-bottom: 0.6rem;
        }
        .feature-card h3 {
            margin-top: 0.2rem;
        }
        .tip-box {
            background: #f0f7ec;
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            margin: 1.4rem 0;
            border-left: 5px solid #b8860b;
        }
        .tip-box strong {
            color: #b8860b;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fafcfa;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #dfebd4;
        }
        th {
            background: #1f6e2e;
            color: #fff;
            font-weight: 700;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #f0f7ec;
        }
        .interview-block {
            background: #fcfaf5;
            padding: 1.6rem;
            border-radius: 16px;
            border: 1px solid #e8dfcc;
            margin: 1.4rem 0;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            padding-left: 1.2rem;
            border-left: 4px solid #b8860b;
            margin: 0.8rem 0;
        }
        .glitch-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .glitch-list li {
            background: #f6faf3;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            list-style: none;
            border: 1px solid #d4e3ca;
        }
        .feedback-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 2.4rem 0;
            background: #f6faf3;
            padding: 1.6rem;
            border-radius: 20px;
        }
        .feedback-area form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-area label {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-area input,
        .feedback-area textarea,
        .feedback-area select {
            padding: 0.6rem 0.8rem;
            border: 2px solid #c0d6b3;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .feedback-area input:focus,
        .feedback-area textarea:focus,
        .feedback-area select:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
        }
        .feedback-area textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-area .btn-submit {
            background: #1f6e2e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .feedback-area .btn-submit:hover {
            background: #b8860b;
            transform: scale(1.02);
        }
        .feedback-area .btn-submit:focus-visible {
            outline: 3px solid #b8860b;
            outline-offset: 2px;
        }
        .star-select {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #d4cba0;
            cursor: pointer;
            direction: rtl;
        }
        .star-select input {
            display: none;
        }
        .star-select label {
            font-size: 1.8rem;
            color: #d4cba0;
            transition: color 0.15s;
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .star-select input:checked~label,
        .star-select label:hover,
        .star-select label:hover~label {
            color: #b8860b;
        }
        footer {
            margin-top: 3rem;
            padding: 1.6rem 0 1rem;
            border-top: 3px solid #dfebd4;
        }
        friend-link {
            display: block;
            background: #f0f5ec;
            padding: 1rem 1.4rem;
            border-radius: 16px;
            margin: 1rem 0 1.4rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1.2rem 0.2rem 0;
            font-weight: 600;
        }
        .copyright {
            font-size: 0.9rem;
            color: #4d6b4d;
            text-align: center;
            padding-top: 0.8rem;
            border-top: 1px solid #dfebd4;
        }
        .copyright strong {
            color: #1f6e2e;
        }
        @media (max-width: 820px) {
            .feedback-area {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0 0.8rem 1.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                background: #ffffff;
                padding: 1rem 1.2rem;
                border-radius: 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
                position: absolute;
                top: 100%;
                right: 0;
                width: 240px;
                z-index: 100;
                border: 1px solid #dfebd4;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                position: relative;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
                border-radius: 20px;
                padding: 0.8rem;
            }
            .search-form button {
                justify-content: center;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .glitch-list {
                grid-template-columns: 1fr;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
            .interview-block {
                padding: 1rem;
            }
            .feedback-area {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 0.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        .last-updated {
            display: inline-block;
            background: #eef3e9;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2d5e2d;
            margin: 0.4rem 0 1.2rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #4d6b4d;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
