        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f8f4f0;
            color: #1e1a17;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a2e0e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e6ddd6;
            margin: 2.4rem 0;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 48px rgba(0, 0, 0, 0.04);
            border-radius: 28px 28px 0 0;
            padding: 0 24px 24px;
        }
        @media (max-width: 640px) {
            .container {
                padding: 0 12px 16px;
                border-radius: 16px 16px 0 0;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid #ede6df;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #d97706, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 83, 9, 0.12);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            -webkit-text-fill-color: #6b5a4e;
            display: block;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            text-decoration: none;
            display: inline-flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #4a3a2e;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ede6df;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 0.6rem;
        }
        .main-nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3d2e22;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #ede6df;
            color: #7a2e0e;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #7a6a5c;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #b9a99a;
        }
        .breadcrumb a {
            color: #7a6a5c;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #2d1f14;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.8rem;
            color: #1e130c;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem;
            color: #2d1f14;
            border-left: 5px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            color: #3d2e22;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.2rem 0 0.4rem;
            color: #4a3a2e;
        }
        p {
            margin-bottom: 1rem;
        }
        .lead {
            font-size: 1.15rem;
            color: #3d2e22;
            background: #fef7f0;
            padding: 1.2rem 1.6rem;
            border-radius: 16px;
            border-left: 4px solid #d97706;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef7f0, #fef0e4);
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
            border: 1px solid #f0e3d8;
        }
        .highlight-box i {
            color: #d97706;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fffcf9;
            border: 1px solid #ede6df;
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b45309;
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6b5a4e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
            border-radius: 12px;
            border: 1px solid #ede6df;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ede6df;
        }
        th {
            background: #fef7f0;
            font-weight: 600;
            color: #2d1f14;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fdf9f5;
        }
        .interview {
            background: #f4eee8;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
            border-left: 5px solid #b45309;
        }
        .interview .who {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2d1f14;
        }
        .interview .who i {
            color: #d97706;
            margin-right: 6px;
        }
        .form-card {
            background: #fffcf9;
            border: 1px solid #ede6df;
            border-radius: 20px;
            padding: 1.6rem 2rem;
            margin: 1.6rem 0;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            color: #2d1f14;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #ddd3c9;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffcf9;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #d97706;
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: linear-gradient(135deg, #d97706, #b45309);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .form-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(180, 83, 9, 0.25);
        }
        .form-card .btn i {
            font-size: 0.9rem;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #ddd3c9;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 1.6rem;
            color: #ddd3c9;
            transition: color 0.15s;
            cursor: pointer;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f59e0b;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #ede6df;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: #2d1f14;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a7a6a;
            margin-left: 12px;
        }
        .comment-item .stars {
            color: #f59e0b;
            font-size: 0.9rem;
            margin-left: 8px;
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1.2rem;
            border-top: 2px solid #ede6df;
            font-size: 0.9rem;
            color: #5a4a3a;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0 0.4rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #f4eee8;
            border-radius: 30px;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #ede6df;
            text-decoration: none;
        }
        .copyright {
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a7a6a;
            border-top: 1px solid #ede6df;
            padding-top: 1.2rem;
        }
        .featured-figure {
            margin: 1.6rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f4eee8;
            padding: 8px;
        }
        .featured-figure figcaption {
            padding: 0.6rem 0.8rem 0.2rem;
            font-size: 0.85rem;
            color: #6b5a4e;
            font-style: italic;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .highlight-box,
            .interview,
            .form-card {
                padding: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .lead {
                font-size: 1rem;
                padding: 1rem;
            }
        }
        @media (max-width: 420px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        :target {
            scroll-margin-top: 80px;
        }
        .search-info {
            background: #fef7f0;
            border-radius: 12px;
            padding: 0.8rem 1.2rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        .visually-hidden:not(:focus):not(:active) {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        button:focus-visible,
        a:focus-visible {
            outline: 3px solid #d97706;
            outline-offset: 2px;
        }
