        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f0;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b2752d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a4f1a;
            text-decoration: underline;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1e2b3a 0%, #14212e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b2752d;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f0e6d3;
            text-transform: uppercase;
            background: linear-gradient(135deg, #d4a76a, #b2752d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            display: block;
            -webkit-text-fill-color: #b8a88c;
            color: #b8a88c;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8ddd0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(178, 117, 45, 0.25);
            color: #f0e6d3;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b2752d;
            color: #f0e6d3;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(178, 117, 45, 0.2);
        }
        .breadcrumb {
            background: #ece7dd;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d9cfbf;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #9a8a78;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5f3e;
        }
        .breadcrumb .current {
            color: #3a2e22;
            font-weight: 600;
        }
        .hero-figure {
            margin: 32px 0 28px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
            background: #e8dfd1;
        }
        .hero-figure img {
            width: 100%;
            aspect-ratio: 1200 / 630;
            object-fit: cover;
        }
        .hero-caption {
            padding: 12px 20px 16px;
            font-style: italic;
            color: #4d3e2e;
            background: #f2ece2;
            font-size: 0.95rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1a2632;
            margin: 0 0 8px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            color: #1e2b3a;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #d4a76a;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3a4a5a;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #3d3a35;
            margin-bottom: 24px;
        }
        strong,
        b {
            color: #1a2632;
        }
        .emoji {
            font-style: normal;
        }
        .content-section {
            margin: 28px 0 40px;
        }
        .content-card {
            background: #fffffffa;
            border-radius: 18px;
            padding: 28px 32px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            margin-bottom: 30px;
            border: 1px solid #ece3d7;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-item {
            background: #f2ece2;
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            border-left: 5px solid #b2752d;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1e2b3a;
            display: block;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: #5c4f3e;
            margin-top: 4px;
        }
        .interview-block {
            background: #e8dfd1;
            padding: 24px 28px;
            border-radius: 18px;
            margin: 28px 0;
            border-left: 6px solid #b2752d;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #1a2632;
        }
        .context-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 12px 0 8px;
        }
        .context-links a {
            background: #f2ece2;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            border: 1px solid #d9cfbf;
            transition: background 0.2s, border-color 0.2s;
        }
        .context-links a:hover {
            background: #d9cfbf;
            border-color: #b2752d;
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 520px;
            margin: 20px 0 28px;
            flex-wrap: wrap;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 20px;
            border: 2px solid #d9cfbf;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form input[type="search"]:focus {
            border-color: #b2752d;
            outline: none;
        }
        .search-form button {
            padding: 12px 32px;
            background: #b2752d;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #8f5d22;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin: 24px 0 32px;
            padding: 20px 0;
            border-top: 2px solid #ece3d7;
            border-bottom: 2px solid #ece3d7;
        }
        .rating-stars {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 1.8rem;
            color: #d4a76a;
        }
        .rating-stars .star-input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #b2752d;
            transform: scale(1.1);
        }
        .rating-stars .star-input:checked~label {
            color: #b2752d;
        }
        .rating-stars .star-input:checked+label {
            color: #b2752d;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rating-form button {
            padding: 8px 24px;
            background: #1e2b3a;
            color: #f0e6d3;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #2c4055;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 640px;
            margin: 20px 0 30px;
        }
        .comment-form textarea {
            padding: 14px 18px;
            border: 2px solid #d9cfbf;
            border-radius: 14px;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #b2752d;
            outline: none;
        }
        .comment-form .row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid #d9cfbf;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-form .row input:focus {
            border-color: #b2752d;
            outline: none;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 36px;
            background: #b2752d;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #8f5d22;
        }
        .site-footer {
            background: #1a2632;
            color: #d9cfbf;
            padding: 40px 0 24px;
            margin-top: 60px;
            border-top: 4px solid #b2752d;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px 28px;
            justify-content: center;
        }
        .footer-links a {
            color: #d4a76a;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #f0e6d3;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            padding: 12px 0;
            border-top: 1px solid #2c3e50;
            border-bottom: 1px solid #2c3e50;
            margin: 8px 0;
        }
        friend-link a {
            color: #c9b698;
            font-weight: 400;
            padding: 4px 10px;
            border-radius: 20px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(178, 117, 45, 0.15);
            color: #f0e6d3;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            font-size: 0.88rem;
            color: #9a8a78;
            padding-top: 12px;
        }
        .copyright strong {
            color: #d4a76a;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: row;
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px 0 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                border-radius: 10px;
                text-align: center;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 20px 18px;
            }
            .hero-figure {
                margin: 16px 0;
                border-radius: 12px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .rating-area {
                flex-direction: column;
                gap: 16px;
            }
            .search-form button {
                padding: 12px 24px;
            }
            .breadcrumb ul {
                font-size: 0.78rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .comment-form .row {
                flex-direction: column;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        :target {
            scroll-margin-top: 100px;
        }
