        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0818;
            color: #e8e0f0;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: clamp(2rem, 6vw, 3.4rem);
            margin-top: 0.5rem;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            border-bottom: 2px solid rgba(250, 204, 21, 0.25);
            padding-bottom: 0.4rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            color: #facc15;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #e0c8ff;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #fff;
            font-weight: 600;
        }
        em {
            color: #facc15;
            font-style: italic;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #facc15, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(180deg, #1a0a2e 0%, #0d0818 100%);
            border-bottom: 1px solid rgba(250, 204, 21, 0.15);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            background: none;
            -webkit-text-fill-color: #facc15;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background .2s;
        }
        .nav-toggle:hover {
            background: rgba(250, 204, 21, 0.12);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        .nav-menu li a {
            color: #ddd;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.3rem 0;
            position: relative;
            white-space: nowrap;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #facc15;
            transition: width .3s ease;
        }
        .nav-menu li a:hover::after,
        .nav-menu li a:focus-visible::after {
            width: 100%;
        }
        .nav-menu li a:hover {
            color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #aaa;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #facc15;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .current {
            color: #facc15;
            font-weight: 500;
        }
        .hero {
            padding: 2rem 0 1.5rem;
            text-align: center;
        }
        .hero p {
            font-size: 1.1rem;
            max-width: 780px;
            margin: 0.8rem auto 1.2rem;
            color: #c8b8e0;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem 2rem;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 0.5rem;
        }
        .hero .meta-info i {
            color: #facc15;
            margin-right: 0.3rem;
        }
        .search-wrap {
            max-width: 580px;
            margin: 1.8rem auto 2.2rem;
            display: flex;
            gap: 0.5rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(250, 204, 21, 0.2);
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            transition: border-color .3s;
        }
        .search-wrap:focus-within {
            border-color: #facc15;
            box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
        }
        .search-wrap input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            font-size: 1rem;
            padding: 0.6rem 0;
        }
        .search-wrap input::placeholder {
            color: #888;
        }
        .search-wrap button {
            background: linear-gradient(135deg, #facc15, #f97316);
            border: none;
            color: #1a0a2e;
            font-weight: 700;
            padding: 0.6rem 1.6rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: transform .2s, box-shadow .2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-wrap button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            padding: 1rem 0 2.5rem;
        }
        .content-main {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 1.5rem 1.2rem;
            border: 1px solid rgba(250, 204, 21, 0.08);
        }
        .content-sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(250, 204, 21, 0.15);
            padding-bottom: 0.5rem;
        }
        .content-sidebar ul {
            list-style: none;
            padding: 0;
        }
        .content-sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .content-sidebar ul li a {
            color: #ccc;
            font-size: 0.9rem;
        }
        .content-sidebar ul li a:hover {
            color: #facc15;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: linear-gradient(135deg, #2a1a4e, #1a0a2e);
            padding: 0.5rem;
        }
        .featured-image img {
            width: 100%;
            border-radius: 12px;
            object-fit: cover;
            min-height: 200px;
            background: #2a1a4e;
        }
        .featured-image figcaption {
            padding: 0.8rem 0.5rem 0.3rem;
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            font-weight: 600;
            text-align: left;
            padding: 0.8rem 1rem;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: rgba(250, 204, 21, 0.04);
        }
        .interview-block {
            background: linear-gradient(135deg, rgba(250, 204, 21, 0.06), rgba(250, 204, 21, 0.02));
            border-left: 4px solid #facc15;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 2rem 0;
        }
        .interview-block p {
            font-style: italic;
            color: #ddd;
        }
        .interview-block .attribution {
            font-style: normal;
            font-weight: 600;
            color: #facc15;
            margin-top: 0.5rem;
        }
        .tip-box {
            background: rgba(250, 204, 21, 0.06);
            border: 1px solid rgba(250, 204, 21, 0.15);
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
        }
        .tip-box strong {
            color: #facc15;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 1.2rem 0.8rem;
            text-align: center;
            border: 1px solid rgba(250, 204, 21, 0.06);
            transition: border-color .3s, transform .2s;
        }
        .stat-card:hover {
            border-color: rgba(250, 204, 21, 0.25);
            transform: translateY(-3px);
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #facc15;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #bbb;
            margin-top: 0.2rem;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0 2rem;
        }
        .comment-section,
        .rating-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            border: 1px solid rgba(250, 204, 21, 0.08);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.7rem 1rem;
            color: #fff;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color .3s;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section select:focus {
            outline: none;
            border-color: #facc15;
        }
        .comment-section textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            align-self: flex-start;
            background: linear-gradient(135deg, #facc15, #f97316);
            border: none;
            color: #1a0a2e;
            font-weight: 700;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: transform .2s, box-shadow .2s;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(250, 204, 21, 0.25);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color .2s, transform .15s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #facc15;
            transform: scale(1.1);
        }
        .site-footer {
            margin-top: auto;
            background: #0a0614;
            border-top: 1px solid rgba(250, 204, 21, 0.1);
            padding: 2.5rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #facc15;
            font-size: 1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        .footer-grid ul li a {
            color: #bbb;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #facc15;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            color: #888;
        }
        .footer-bottom a {
            color: #ccc;
        }
        .footer-bottom a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            font-size: 0.9rem;
        }
        friend-link a {
            color: #bbb;
        }
        friend-link a:hover {
            color: #facc15;
        }
        @media (max-width: 820px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .content-sidebar {
                position: static;
                margin-top: 2rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(250, 204, 21, 0.1);
                margin-top: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.4rem 0;
                display: block;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 16px;
                padding: 0.5rem;
                background: rgba(255, 255, 255, 0.04);
            }
            .search-wrap input {
                padding: 0.5rem 0.8rem;
            }
            .search-wrap button {
                width: 100%;
                justify-content: center;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero p {
                font-size: 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                display: none;
            }
            .interview-block {
                padding: 1rem 1.2rem;
            }
            .tip-box {
                padding: 1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0818;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a2a5e;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a3a8e;
        }
        .schema-hidden {
            display: none;
        }
