* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c060;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd98a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141a24;
            border-bottom: 2px solid #2a3a4a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c060, #d4a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(240, 192, 96, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c060;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a3a4a;
        }
        nav {
            display: flex;
            gap: 12px 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8c6c2;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            color: #f0c060;
            border-bottom-color: #f0c060;
            text-decoration: none;
        }
        nav a.active {
            color: #f0c060;
            border-bottom-color: #f0c060;
        }
        .breadcrumb {
            background: #1a222e;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a3a4a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #7a8a9a;
        }
        .breadcrumb a {
            color: #a0b0c0;
        }
        .breadcrumb a:hover {
            color: #f0c060;
        }
        .breadcrumb .current {
            color: #e8e6e3;
        }
        .hero {
            background: linear-gradient(135deg, #0b0e14 0%, #1a2a3a 50%, #0b0e14 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 1px solid #2a3a4a;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c060, #e0b050, #f0c060);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.15rem;
            color: #b0b8c0;
            max-width: 720px;
            margin: 0 auto 16px;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #7a8a9a;
        }
        .hero .meta i {
            margin-right: 4px;
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 1.9rem;
            color: #f0c060;
            margin: 48px 0 16px;
            border-bottom: 1px solid #2a3a4a;
            padding-bottom: 8px;
        }
        .article-body h2:first-of-type {
            margin-top: 0;
        }
        .article-body h3 {
            font-size: 1.4rem;
            color: #e0b850;
            margin: 32px 0 12px;
        }
        .article-body h4 {
            font-size: 1.15rem;
            color: #d0b040;
            margin: 24px 0 8px;
            font-weight: 600;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #d8d6d2;
            font-size: 1.02rem;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 20px 24px;
            color: #d0ceca;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #f0e8d0;
            font-weight: 600;
        }
        .article-body em {
            color: #c8b890;
        }
        .article-body blockquote {
            border-left: 4px solid #f0c060;
            padding: 12px 24px;
            margin: 24px 0;
            background: #1a2230;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #c8c0b0;
        }
        .article-body .feature-box {
            background: #1a2230;
            border: 1px solid #2a3a4a;
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
        }
        .article-body .feature-box h4 {
            margin-top: 0;
        }
        .article-body .img-wrapper {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3a4a;
            background: #141a24;
        }
        .article-body .img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .article-body .img-wrapper figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #8a9a9a;
            background: #141a24;
            border-top: 1px solid #2a3a4a;
        }
        .article-body .link-list {
            background: #141a24;
            border: 1px solid #2a3a4a;
            border-radius: 10px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .article-body .link-list h4 {
            margin-top: 0;
        }
        .article-body .link-list ul {
            list-style: none;
            margin: 8px 0 0 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 20px;
        }
        @media(max-width:600px) {
            .article-body .link-list ul {
                grid-template-columns: 1fr;
            }
        }
        .article-body .link-list li {
            margin-bottom: 2px;
        }
        .article-body .link-list a {
            display: inline-block;
            padding: 2px 0;
        }
        .sidebar {
            background: #141a24;
            border-radius: 12px;
            padding: 24px 20px;
            border: 1px solid #2a3a4a;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            color: #f0c060;
            font-size: 1.2rem;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a3a4a;
            padding-bottom: 8px;
        }
        .sidebar .link-list-side {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar .link-list-side li {
            margin-bottom: 6px;
        }
        .sidebar .link-list-side a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 6px;
            transition: background 0.2s;
            font-size: 0.92rem;
        }
        .sidebar .link-list-side a:hover {
            background: #1e2a3a;
            text-decoration: none;
        }
        .sidebar .link-list-side i {
            color: #f0c060;
            width: 18px;
            text-align: center;
        }
        .search-section {
            background: #1a222e;
            border-radius: 10px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #2a3a4a;
        }
        .search-section h3 {
            color: #f0c060;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 1px solid #3a4a5a;
            border-radius: 8px;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.2s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #f0c060;
            box-shadow: 0 0 0 3px rgba(240, 192, 96, 0.15);
        }
        .search-form button {
            padding: 12px 28px;
            background: #f0c060;
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffd98a;
            transform: scale(1.02);
        }
        .search-form button i {
            margin-right: 6px;
        }
        .interact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 36px 0;
        }
        @media(max-width:700px) {
            .interact-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #141a24;
            border: 1px solid #2a3a4a;
            border-radius: 12px;
            padding: 24px;
        }
        .comment-box h3,
        .rating-box h3 {
            color: #f0c060;
            font-size: 1.2rem;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #3a4a5a;
            border-radius: 8px;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            margin-bottom: 12px;
            resize: vertical;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            outline: none;
            border-color: #f0c060;
            box-shadow: 0 0 0 3px rgba(240, 192, 96, 0.12);
        }
        .comment-form textarea {
            min-height: 90px;
        }
        .comment-form .row-2 {
            display: flex;
            gap: 12px;
        }
        .comment-form .row-2 input {
            flex: 1;
        }
        .comment-form button {
            padding: 10px 24px;
            background: #f0c060;
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .comment-form button:hover {
            background: #ffd98a;
        }
        .rating-stars {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .rating-stars .stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #4a5a6a;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars .stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars .stars i:hover,
        .rating-stars .stars i:hover~i {
            color: #f0c060;
            transform: scale(1.1);
        }
        .rating-stars .stars i.active {
            color: #f0c060;
        }
        .rating-form input,
        .rating-form textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #3a4a5a;
            border-radius: 8px;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .rating-form input:focus,
        .rating-form textarea:focus {
            outline: none;
            border-color: #f0c060;
        }
        .rating-form textarea {
            min-height: 60px;
            resize: vertical;
        }
        .rating-form button {
            padding: 10px 24px;
            background: #f0c060;
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #ffd98a;
        }
        .rating-display {
            margin-top: 14px;
            font-size: 0.95rem;
            color: #b0b8c0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-display .avg {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f0c060;
        }
        footer {
            background: #0e121c;
            border-top: 2px solid #1a2a3a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @media(max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f0c060;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .footer-inner p {
            color: #a0a8b0;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-inner a {
            color: #b0b8c0;
            font-size: 0.9rem;
        }
        .footer-inner a:hover {
            color: #f0c060;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 6px;
        }
        friend-link {
            display: block;
            margin: 16px 0 0;
            padding: 12px 0 0;
            border-top: 1px solid #1a2a3a;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
            font-size: 0.9rem;
            color: #8a9aaa;
        }
        friend-link a:hover {
            color: #f0c060;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #1a2a3a;
            color: #6a7a8a;
            font-size: 0.85rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .copyright strong {
            color: #8a9aaa;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 8px;
                border-top: 1px solid #2a3a4a;
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 8px 0;
                font-size: 1.05rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #1a2a3a;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b0c0d0;
        }
        .updated-badge i {
            color: #f0c060;
        }
        .emoji-big {
            font-size: 1.3em;
        }
        .highlight {
            background: linear-gradient(90deg, #2a3a4a, #1a2a3a);
            padding: 0 6px;
            border-radius: 4px;
        }
        .toc {
            background: #141a24;
            border: 1px solid #2a3a4a;
            border-radius: 10px;
            padding: 20px 24px;
            margin: 0 0 28px 0;
        }
        .toc h3 {
            color: #f0c060;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .toc ul {
            list-style: none;
            margin: 0;
            padding: 0;
            columns: 2;
            column-gap: 24px;
        }
        @media(max-width:600px) {
            .toc ul {
                columns: 1;
            }
        }
        .toc li {
            margin-bottom: 4px;
            break-inside: avoid;
        }
        .toc a {
            color: #b0b8c0;
            font-size: 0.92rem;
            display: block;
            padding: 2px 0;
        }
        .toc a:hover {
            color: #f0c060;
        }
        .toc a::before {
            content: "›";
            margin-right: 8px;
            color: #f0c060;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #141a24;
            border: 1px solid #2a3a4a;
            border-radius: 10px;
            padding: 16px 12px;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c060;
        }
        .stat-card .label {
            font-size: 0.8rem;
            color: #8a9aaa;
            margin-top: 4px;
        }
        .interview-box {
            background: #1a2230;
            border-left: 4px solid #f0c060;
            border-radius: 0 10px 10px 0;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .interview-box .speaker {
            font-weight: 700;
            color: #f0c060;
        }
        .interview-box .speaker::after {
            content: ":";
            margin-right: 4px;
        }
