        *,
        *::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: #0d0f13;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5b342;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0ede8;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
            margin-bottom: 0.6rem;
            border-bottom: 2px solid #2f3540;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.4rem;
            color: #f5b342;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #c9c5bf;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #14181f;
            border-bottom: 2px solid #2a313c;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #f5b342;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #e8a23a;
        }
        .my-logo:hover {
            color: #ffd966;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 300;
            color: #8a8f99;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0ede8;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #c9c5bf;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #f5b342;
            border-bottom-color: #f5b342;
            text-decoration: none;
        }
        .nav-menu .active {
            color: #f5b342;
            border-bottom-color: #f5b342;
        }
        .breadcrumb {
            background: #1a1f28;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a313c;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #6a6f7a;
        }
        .breadcrumb a {
            color: #8a8f99;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .current {
            color: #e8e6e3;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-header .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: #8a8f99;
            margin-top: 0.5rem;
        }
        .article-header .meta i {
            margin-right: 0.3rem;
        }
        .featured-image {
            border-radius: 12px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
            background: #1a1f28;
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            min-height: 200px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            background: #1a1f28;
            font-size: 0.85rem;
            color: #8a8f99;
            border-top: 1px solid #2a313c;
        }
        .info-box {
            background: #1e242e;
            border-left: 4px solid #f5b342;
            padding: 1rem 1.25rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #f5b342;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #1a1f28;
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid #2a313c;
            transition: transform 0.2s, border-color 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f5b342;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 700;
            color: #f5b342;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #8a8f99;
            margin-top: 0.3rem;
        }
        .stat-card i {
            font-size: 1.6rem;
            color: #f5b342;
            margin-bottom: 0.4rem;
        }
        .interview-block {
            background: #1a1f28;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.8rem 0;
            border: 1px solid #2f3540;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -0.8rem;
            left: 1rem;
            background: #0d0f13;
            padding: 0 0.4rem;
        }
        .interview-block .speaker {
            font-weight: 600;
            color: #f5b342;
        }
        .interview-block .role {
            font-size: 0.85rem;
            color: #6a6f7a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 10px;
            border: 1px solid #2a313c;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            min-width: 480px;
        }
        th {
            background: #1e242e;
            color: #f5b342;
            font-weight: 600;
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 2px solid #2a313c;
        }
        td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #232932;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #1a1f28;
        }
        .form-section {
            background: #1a1f28;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0;
            border: 1px solid #2a313c;
        }
        .form-section h3 {
            margin-top: 0;
            border-bottom: none;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #c9c5bf;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border-radius: 6px;
            border: 1px solid #2f3540;
            background: #0d0f13;
            color: #e8e6e3;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5b342;
        }
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #f5b342;
            color: #0d0f13;
            font-weight: 600;
            padding: 0.6rem 1.6rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #ffc966;
            transform: scale(1.02);
            text-decoration: none;
            color: #0d0f13;
        }
        .btn i {
            margin-right: 0.4rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
            color: #3a3f4a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #3a3f4a;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .site-footer {
            background: #14181f;
            border-top: 2px solid #2a313c;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.25rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 220px;
        }
        .footer-col h4 {
            color: #f5b342;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 0.4rem;
        }
        .footer-col a {
            color: #8a8f99;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #1a1f28;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            margin: 0.5rem 0;
            border: 1px solid #2a313c;
            font-size: 0.9rem;
            color: #8a8f99;
        }
        friend-link a {
            color: #c9c5bf;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f5b342;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #232932;
            font-size: 0.85rem;
            color: #6a6f7a;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.3rem;
                padding: 0.8rem 0 0.3rem;
                border-top: 1px solid #2a313c;
                margin-top: 0.5rem;
            }
            .nav-menu.show {
                display: flex;
            }
            .nav-menu a {
                padding: 0.5rem 0;
                width: 100%;
                border-bottom: 1px solid #1e242e;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                flex-direction: column;
                gap: 1.2rem;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .form-section {
                padding: 1rem 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
        }
        .highlight {
            color: #f5b342;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: #2f3540;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #c9c5bf;
            margin-right: 0.3rem;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .spacer {
            height: 1rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #1a1f28;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #8a8f99;
            border: 1px solid #2a313c;
        }
        .last-updated i {
            color: #f5b342;
        }
