        *,
        *::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: #faf7f2;
            color: #2e241f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b35c2b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3e1c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1f1a17;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #b35c2b;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e6d5c0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #7a4a2a;
        }
        h4 {
            font-size: 1.15rem;
            color: #5a3a2a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            padding: 0 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #efe5da;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b35c2b, #7a3e1c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: #b35c2b;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav.nav-primary {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav.nav-primary a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2e241f;
            transition: background 0.2s, color 0.2s;
        }
        nav.nav-primary a:hover {
            background: #b35c2b;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #2e241f;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #efe5da;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #7a6a5a;
            width: 100%;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #b35c2b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb a:hover {
            color: #b35c2b;
        }
        .breadcrumb .active {
            color: #2e241f;
            font-weight: 600;
        }
        .search-section {
            background: #f4ede6;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form {
            display: flex;
            flex: 2;
            min-width: 220px;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e6d5c0;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #b35c2b;
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            background: #b35c2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #7a3e1c;
        }
        .content {
            padding: 0.5rem 0 2rem;
        }
        .featured-image {
            margin: 1.5rem 0 2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            background: #f4ede6;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3a;
            font-style: italic;
        }
        .highlight-box {
            background: #f9f3ec;
            border-left: 5px solid #b35c2b;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box strong {
            color: #7a3e1c;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #fff;
            border: 1px solid #e6d5c0;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b35c2b;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #5a4a3a;
        }
        .interview-block {
            background: #f4ede6;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }
        .interview-block .quote {
            font-size: 1.15rem;
            font-style: italic;
            position: relative;
            padding-left: 1.5rem;
            border-left: 4px solid #b35c2b;
        }
        .interview-block .attribution {
            margin-top: 0.8rem;
            font-weight: 600;
            color: #7a3e1c;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
            padding: 2rem 0;
            border-top: 2px solid #efe5da;
            border-bottom: 2px solid #efe5da;
        }
        @media (max-width:700px) {
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        .comment-section,
        .rating-section {
            background: #faf7f2;
            padding: 1.4rem 1.8rem;
            border-radius: 16px;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e6d5c0;
            border-radius: 12px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #b35c2b;
        }
        .comment-form .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.6rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 0.6rem 1rem;
            border: 2px solid #e6d5c0;
            border-radius: 40px;
            font-size: 0.9rem;
            background: #fff;
        }
        .comment-form .form-row input:focus {
            outline: none;
            border-color: #b35c2b;
        }
        .comment-form button {
            padding: 0.6rem 1.6rem;
            background: #b35c2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #7a3e1c;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            color: #e6d5c0;
            cursor: pointer;
            margin: 0.6rem 0;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-section .score-form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }
        .rating-section .score-form input {
            flex: 1;
            min-width: 120px;
            padding: 0.6rem 1rem;
            border: 2px solid #e6d5c0;
            border-radius: 40px;
            font-size: 0.9rem;
            background: #fff;
        }
        .rating-section .score-form button {
            padding: 0.6rem 1.6rem;
            background: #b35c2b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section .score-form button:hover {
            background: #7a3e1c;
        }
        footer {
            padding: 2rem 0 1.2rem;
            border-top: 2px solid #efe5da;
            margin-top: 1rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0 0.8rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #f4ede6;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #2e241f;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #b35c2b;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #7a6a5a;
            font-size: 0.85rem;
            padding-top: 0.8rem;
            border-top: 1px solid #e6d5c0;
        }
        .copyright strong {
            color: #2e241f;
        }
        @media (max-width:768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 0 0.8rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-wrapper nav.nav-primary {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf9;
                padding: 0.8rem 0;
                border-radius: 12px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                position: absolute;
                top: 100%;
                left: 0;
                z-index: 99;
            }
            .nav-wrapper nav.nav-primary.open {
                display: flex;
            }
            .nav-wrapper nav.nav-primary a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
            }
            .hamburger {
                display: block;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
        }
        @media (max-width:460px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.85rem;
            color: #7a6a5a;
            margin-top: 0.5rem;
            padding-top: 0.3rem;
            border-top: 1px dashed #e6d5c0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #efe5da;
        }
        th {
            background: #b35c2b;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf5ef;
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
