        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #fbfaf6;
            color: #1e2a2f;
            line-height: 1.7;
            font-size: 16px;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45f2b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #833e1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e2a2f;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.2rem;
            margin-bottom: 0.6rem;
            border-bottom: 3px solid #e5d9cc;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.6rem;
            margin-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1e3a3f;
            color: #f5efe8;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5efe8;
            background: linear-gradient(135deg, #e8c97a, #d4a85c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #d9cdb8;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e8d9c4;
            color: #e8d9c4;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            align-items: center;
        }
        .main-nav a {
            color: #e8d9c4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f5efe8;
            text-decoration: none;
        }
        .main-nav a.active {
            background: rgba(232, 201, 122, 0.2);
            color: #e8c97a;
        }
        .breadcrumb {
            background: #f0e9e0;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d5c8;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #9a8a7a;
        }
        .breadcrumb a {
            color: #7a6a5a;
        }
        .breadcrumb a:hover {
            color: #b45f2b;
        }
        .breadcrumb .current {
            color: #3a2a1a;
            font-weight: 500;
        }
        .main-content {
            padding: 2.2rem 0 3rem;
        }
        .featured-figure {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
            background: #e8dfd2;
        }
        .featured-figure img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #f6f0e8;
            font-style: italic;
        }
        .info-box {
            background: #f0ebe2;
            border-left: 5px solid #b45f2b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #1e3a3f;
        }
        .highlight {
            background: linear-gradient(to top, #f7e9d6 40%, transparent 40%);
            font-weight: 600;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fffcf8;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .data-table th {
            background: #1e3a3f;
            color: #f5efe8;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #ece3d8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f7f0e6;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.8rem 0;
        }
        .card {
            background: #fffcf8;
            border-radius: 14px;
            padding: 1.5rem 1.2rem;
            box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #ece3d8;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #b45f2b;
            margin-bottom: 0.6rem;
        }
        .card h4 {
            margin-top: 0;
            color: #1e3a3f;
        }
        .interview-block {
            background: #f5f0e8;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e5d9cc;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2.2rem;
            position: absolute;
            top: -0.8rem;
            left: 1.2rem;
            background: #f5f0e8;
            padding: 0 0.4rem;
        }
        .interview-block .guest {
            font-weight: 700;
            color: #1e3a3f;
            font-size: 1.1rem;
        }
        .interview-block .role {
            font-size: 0.85rem;
            color: #7a6a5a;
        }
        .interaction-section {
            background: #f5f0e8;
            border-radius: 18px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.8rem 0;
        }
        .interaction-section .form-group {
            margin-bottom: 1.2rem;
        }
        .interaction-section label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e3a3f;
        }
        .interaction-section input,
        .interaction-section textarea,
        .interaction-section select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d5c8;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffcf8;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .interaction-section input:focus,
        .interaction-section textarea:focus,
        .interaction-section select:focus {
            outline: none;
            border-color: #b45f2b;
        }
        .interaction-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #b45f2b;
            color: #fff;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #8f4a1f;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-secondary {
            background: #4a6a6f;
        }
        .btn-secondary:hover {
            background: #355055;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #d4c5b0;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8b84b;
            transform: scale(1.1);
        }
        .site-footer {
            background: #1e2a2f;
            color: #cfc5b8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2.5rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .site-footer h4 {
            color: #e8d9c4;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #cfc5b8;
        }
        .site-footer a:hover {
            color: #e8c97a;
        }
        .friend-link {
            display: block;
            padding: 0.5rem 0;
        }
        .friend-link a {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.3rem;
        }
        .copyright {
            border-top: 1px solid #3a4a4f;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.85rem;
            color: #9a8a7a;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.3rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 0;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .interaction-section {
                padding: 1.5rem;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .text-sm {
            font-size: 0.85rem;
        }
        .text-muted {
            color: #7a6a5a;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .last-updated {
            display: inline-block;
            background: #e8dfd2;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a3a2a;
        }
