        *,
        *::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: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #0057b3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f2e 0%, #1a1a3e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(255, 210, 0, 0.15);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #ffd200;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #ffd200;
            color: #ffd200;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e0f0;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 210, 0, 0.15);
            color: #ffd200;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #ffd200;
            color: #0f0f2e;
        }
        .breadcrumb {
            background: #eef1f8;
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce1ec;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #888;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #0057b3;
        }
        .breadcrumb a:hover {
            color: #ff6b35;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 40px 40px 50px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f9;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #0f0f2e;
            border-bottom: 2px solid #ffd200;
            padding-bottom: 8px;
            display: inline-block;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f0f2f8;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0f0f2e;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        h1 .highlight {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #0f0f2e;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ffd200;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a3e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #2a2a4e;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2d2d44;
        }
        .lead {
            font-size: 1.2rem;
            color: #444;
            line-height: 1.9;
            margin-bottom: 28px;
            font-weight: 400;
        }
        .emojumark {
            font-size: 1.3rem;
            margin-right: 6px;
        }
        .badge {
            display: inline-block;
            background: #ffd200;
            color: #0f0f2e;
            padding: 2px 14px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .stat-box {
            background: #f8faff;
            border-left: 5px solid #ffd200;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }
        .stat-box strong {
            color: #0f0f2e;
        }
        .interview-block {
            background: #f4f7fe;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 32px 0;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2.2rem;
            position: absolute;
            top: -12px;
            left: 20px;
            background: #f4f7fe;
            padding: 0 10px;
        }
        .interview-block p {
            margin-bottom: 10px;
        }
        .interview-block .attribution {
            font-weight: 700;
            color: #0f0f2e;
            margin-top: 12px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: 0.25s;
            background: #0f0f2e;
            color: #fff;
        }
        .btn:hover {
            background: #ffd200;
            color: #0f0f2e;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 210, 0, 0.3);
        }
        .btn-primary {
            background: #ffd200;
            color: #0f0f2e;
        }
        .btn-primary:hover {
            background: #f7971e;
            color: #fff;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8faff;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #555;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
        }
        .interaction-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #eef2f9;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        .interaction-card {
            background: #f8faff;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #eef2f9;
            transition: 0.3s;
        }
        .interaction-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            border-color: #ffd200;
        }
        .interaction-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interaction-card input,
        .interaction-card textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #dce1ec;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-top: 8px;
            font-family: inherit;
            transition: 0.2s;
            background: #fff;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus {
            outline: none;
            border-color: #ffd200;
            box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.15);
        }
        .interaction-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-card .btn {
            margin-top: 12px;
            width: 100%;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd200;
        }
        .score-display {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f0f2e;
            margin-top: 8px;
        }
        .site-footer {
            background: #0f0f2e;
            color: #c0c0e0;
            padding: 48px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid #ffd200;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-inner a {
            color: #a0a0d0;
        }
        .footer-inner a:hover {
            color: #ffd200;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            padding: 4px 0;
        }
        .friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 24px 20px;
            margin-top: 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .friend-link h4 {
            margin-top: 0;
        }
        .friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .friend-link ul li a {
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.9rem;
            color: #8888aa;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #12122e;
                padding: 20px 16px;
                border-radius: 16px;
                margin-top: 16px;
                gap: 6px;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 18px;
                width: 100%;
                border-radius: 10px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-body {
                padding: 24px 18px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .lead {
                font-size: 1rem;
            }
            .stat-box {
                padding: 16px 18px;
            }
            .interview-block {
                padding: 20px 18px;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        .last-updated {
            color: #888;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 24px;
        }
        .last-updated i {
            color: #ffd200;
        }
