        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f7fa;
            color: #1a2634;
            line-height: 1.7;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #0d1b2a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: clamp(1.9rem, 5vw, 3.2rem);
            margin-top: 0.2rem;
            border-left: 6px solid #f4a261;
            padding-left: 1rem;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.4rem);
            border-bottom: 3px solid #e9c46a;
            padding-bottom: 0.4rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            color: #1e3a5f;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #2a4a6b;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        a {
            color: #b6382c;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s, background 0.2s;
            font-weight: 500;
        }
        a:hover,
        a:focus-visible {
            color: #7a2a1f;
            background: #fef0db;
            outline: 2px solid #f4a261;
            outline-offset: 2px;
            border-radius: 2px;
        }
        strong {
            font-weight: 700;
            color: #0d1b2a;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.2em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
            color: #fff;
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem 1.5rem;
        }
        .my-logo {
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f4a261;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.2rem 1rem 0.2rem 0.8rem;
            border-radius: 40px;
            transition: background 0.3s;
        }
        .my-logo:hover {
            background: rgba(244, 162, 97, 0.2);
            color: #f4a261;
        }
        .my-logo i {
            font-size: 0.8em;
            color: #e9c46a;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 0.1rem;
            list-style: none;
        }
        .nav-menu li a {
            color: #f0f4f8;
            text-decoration: none;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            display: inline-block;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: #f4a261;
            color: #0d1b2a;
        }
        .breadcrumb {
            background: #f0f2f5;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #dce1e8;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #7a8a9e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b6382c;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #3a4a5e;
            font-weight: 600;
        }
        .main-content {
            background: #fff;
            padding: 2rem 0 3rem;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
        }
        .article-wrap {
            max-width: 860px;
            margin: 0 auto;
        }
        .hero-figure {
            margin: 1.8rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #eef2f6;
        }
        .hero-figure img {
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #3a4a5e;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #eef3f7;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #2a4a6b;
            margin-bottom: 1.8rem;
            border: 1px solid #dce4ec;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f4a261;
        }
        .link-badge {
            display: inline-block;
            background: #fef5e7;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid #f4d3a2;
            margin: 0.1rem 0.15rem;
            white-space: nowrap;
        }
        .block-quote {
            background: #f8f4eb;
            border-left: 6px solid #e9c46a;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #2a3a4e;
        }
        .block-quote cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #b6382c;
        }
        .highlight-box {
            background: linear-gradient(to right, #fef9ef, #fdf2e0);
            padding: 1.2rem 1.8rem;
            border-radius: 14px;
            border: 1px solid #f4d3a2;
            margin: 2rem 0;
        }
        .highlight-box i {
            color: #f4a261;
            margin-right: 0.5rem;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #0d1b2a;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eaeef3;
        }
        .data-table tr:nth-child(even) {
            background: #f8fafc;
        }
        .data-table tr:hover {
            background: #fef5e7;
        }
        .interview-card {
            background: #f2f6fa;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 2.2rem 0;
            border-left: 6px solid #b6382c;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }
        .interview-card h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interview-card h4 i {
            color: #f4a261;
        }
        .widget-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin: 2.8rem 0 2rem;
            padding: 1.8rem;
            background: #f8fafc;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
        }
        .widget-item {
            flex: 1 1 220px;
            min-width: 180px;
        }
        .widget-item h4 {
            margin: 0 0 0.6rem;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            justify-content: flex-start;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d0d7e0;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f4a261;
        }
        .widget-item form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-top: 0.3rem;
        }
        .widget-item form input,
        .widget-item form textarea {
            padding: 0.6rem 0.9rem;
            border: 1px solid #ccd7e4;
            border-radius: 10px;
            font-size: 0.9rem;
            font-family: inherit;
            background: #fff;
            transition: border 0.2s;
        }
        .widget-item form input:focus,
        .widget-item form textarea:focus {
            border-color: #f4a261;
            outline: 3px solid rgba(244, 162, 97, 0.2);
        }
        .widget-item form button {
            padding: 0.6rem 1.2rem;
            background: #b6382c;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            font-size: 0.9rem;
        }
        .widget-item form button:hover {
            background: #7a2a1f;
            transform: scale(0.98);
        }
        .site-footer {
            background: #0d1b2a;
            color: #ccdcec;
            padding: 2.5rem 0 1.8rem;
            font-size: 0.9rem;
            border-top: 4px solid #f4a261;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #f4a261;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
            list-style: none;
            padding: 0;
        }
        .friend-link li a {
            color: #b8d0e0;
            text-decoration: none;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .friend-link li a:hover {
            color: #f4a261;
            border-bottom-color: #f4a261;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #2a3a5e;
            padding-top: 1.5rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #8a9bb0;
        }
        .copyright strong {
            color: #e9c46a;
            font-weight: 600;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0d1b2a;
                padding: 0.8rem 0.5rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1.2rem;
                width: 100%;
                border-radius: 8px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .widget-group {
                flex-direction: column;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.7rem;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .interview-card {
                padding: 1.2rem;
            }
            .highlight-box {
                padding: 1rem 1.2rem;
            }
            .block-quote {
                padding: 1rem 1.2rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #5a6a7e;
        }
        .no-wrap {
            white-space: nowrap;
        }
