        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #1e2a2f;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px 24px 0 0;
            overflow: hidden;
            padding: 0 1.5rem 2rem;
        }
        .site-header {
            padding: 1.25rem 0 0.75rem;
            border-bottom: 2px solid #e6ddd0;
            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.02em;
            color: #2d1b0e;
            background: linear-gradient(135deg, #b45309, #78350f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
        }
        .my-logo i {
            background: #b45309;
            color: #fff;
            padding: 0.35rem;
            border-radius: 10px;
            font-size: 1.2rem;
            -webkit-text-fill-color: #fff;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #3d2b1c;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d1b0e;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ede6dc;
        }
        .breadcrumb {
            padding: 0.75rem 0 0.25rem;
            font-size: 0.85rem;
            color: #6b5a4a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
            width: 100%;
            margin-top: 0.25rem;
        }
        .breadcrumb a {
            color: #8b6f50;
        }
        .breadcrumb span {
            color: #b45309;
            font-weight: 600;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: #b0947a;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            color: #1e2a2f;
            background: linear-gradient(135deg, #2d1b0e, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
        }
        .hero .subhead {
            font-size: 1.2rem;
            color: #5a4a3a;
            max-width: 720px;
            margin: 0 auto 1.5rem;
        }
        .hero .meta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #7a6a5a;
        }
        .hero .meta i {
            margin-right: 0.3rem;
            color: #b45309;
        }
        section {
            padding: 2rem 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1e2a2f;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 4px solid #ede6dc;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #b45309;
            border-radius: 4px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d1b0e;
            margin: 2rem 0 0.75rem 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3728;
            margin: 1.5rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.25rem;
            color: #2e3a3f;
        }
        .highlight-box {
            background: #fdf8f0;
            border-left: 6px solid #b45309;
            padding: 1.25rem 1.75rem;
            border-radius: 0 16px 16px 0;
            margin: 1.75rem 0;
        }
        .highlight-box strong {
            color: #78350f;
        }
        ul,
        ol {
            margin: 0.75rem 0 1.5rem 1.75rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            background: #f8f3ec;
            font-size: 0.9rem;
            color: #5a4a3a;
            font-style: italic;
        }
        .search-section {
            background: #f8f3ec;
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 1rem auto 0;
        }
        .search-form input {
            flex: 1 1 260px;
            padding: 0.85rem 1.25rem;
            border: 2px solid #ddd2c2;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #b45309;
        }
        .search-form button {
            padding: 0.85rem 2rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #78350f;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .score-box {
            background: #fdfaf5;
            padding: 1.75rem 2rem;
            border-radius: 20px;
            border: 1px solid #e6ddd0;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #ddd2c2;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 0.75rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            outline: none;
            border-color: #b45309;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            padding: 0.7rem 1.75rem;
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #78350f;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.25rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f8f3ec;
            padding: 1.5rem 1rem;
            border-radius: 16px;
            text-align: center;
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 900;
            color: #b45309;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #5a4a3a;
            font-weight: 600;
        }
        .interview-card {
            background: #fdfaf5;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            border-left: 6px solid #b45309;
            margin: 1.5rem 0;
        }
        .interview-card .name {
            font-weight: 800;
            font-size: 1.2rem;
            color: #1e2a2f;
        }
        .interview-card .role {
            color: #7a6a5a;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }
        .resource-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 0.75rem;
            margin: 1.5rem 0;
            padding: 0;
            list-style: none;
        }
        .resource-list li {
            margin: 0;
        }
        .resource-list a {
            display: block;
            padding: 0.7rem 1.2rem;
            background: #f8f3ec;
            border-radius: 12px;
            font-weight: 500;
            transition: background 0.2s, transform 0.1s;
            border-left: 4px solid #b45309;
        }
        .resource-list a:hover {
            background: #ede6dc;
            transform: translateX(4px);
            text-decoration: none;
        }
        .faq-item {
            padding: 1rem 0;
            border-bottom: 1px solid #e6ddd0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-item strong {
            display: block;
            font-size: 1.1rem;
            color: #2d1b0e;
            margin-bottom: 0.3rem;
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #e6ddd0;
            font-size: 0.9rem;
            color: #5a4a3a;
        }
        .site-footer friend-link {
            display: block;
            margin: 1rem 0;
            padding: 1rem 1.25rem;
            background: #f8f3ec;
            border-radius: 16px;
            font-weight: 600;
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 0.25rem 0.75rem 0.25rem 0;
            padding: 0.3rem 1rem;
            background: #fff;
            border-radius: 40px;
            border: 1px solid #ddd2c2;
            font-weight: 500;
            transition: background 0.2s;
        }
        .site-footer friend-link a:hover {
            background: #b45309;
            color: #fff;
            border-color: #b45309;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #8a7a6a;
            border-top: 1px solid #ede6dc;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #2d1b0e;
        }
        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 1rem 0;
                border-top: 2px solid #ede6dc;
                margin-top: 0.75rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.75rem 1rem;
                border-radius: 0;
                border-bottom: 1px solid #f0e8de;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                justify-content: space-between;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 1rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        :focus-visible {
            outline: 3px solid #b45309;
            outline-offset: 2px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1ece4;
        }
        ::-webkit-scrollbar-thumb {
            background: #b0947a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #8b6f50;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #ede6dc;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #4a3728;
        }
