        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e6e3;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #e6c87c;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f5e3a3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0e6d3;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid #b4945a;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.75rem;
            border-left: 6px solid #b4945a;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            color: #d4c9b5;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #141428 0%, #1e2a1e 100%);
            border-bottom: 2px solid #b4945a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.7rem;
            font-weight: 700;
            color: #f0e6d3;
            text-decoration: none !important;
            letter-spacing: 1px;
        }
        .my-logo i {
            color: #e6c87c;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(to right, #e6c87c, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.5rem;
            font-weight: 300;
            -webkit-text-fill-color: #aaa;
            background: none;
            color: #aaa;
            display: block;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0e6d3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #d4c9b5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(180, 148, 90, 0.2);
            color: #f5e3a3;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.35rem;
        }
        .breadcrumb-wrap {
            background: rgba(20, 20, 40, 0.65);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(180, 148, 90, 0.2);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            font-size: 0.88rem;
            color: #b0a898;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.65rem;
            color: #b4945a;
        }
        .breadcrumb a {
            color: #d4c9b5;
        }
        .breadcrumb a:hover {
            color: #f5e3a3;
        }
        .breadcrumb .active {
            color: #e6c87c;
        }
        .hero {
            background: radial-gradient(ellipse at 30% 40%, #1a2a1a, #0d0d1a 80%);
            padding: 2.5rem 0 1.5rem;
            border-bottom: 1px solid rgba(180, 148, 90, 0.25);
        }
        .hero h1 {
            border-bottom: none;
            margin-top: 0;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.92rem;
            color: #b0a898;
            margin: 0.8rem 0 1.2rem;
        }
        .hero .meta i {
            color: #e6c87c;
            margin-right: 0.35rem;
        }
        .last-updated {
            background: rgba(180, 148, 90, 0.12);
            padding: 0.2rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.85rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .widget {
            background: rgba(30, 30, 50, 0.6);
            border: 1px solid rgba(180, 148, 90, 0.2);
            border-radius: 12px;
            padding: 1.5rem 1.2rem;
            margin-bottom: 1.8rem;
            backdrop-filter: blur(4px);
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 1px solid rgba(180, 148, 90, 0.3);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .widget ul li:last-child {
            border-bottom: none;
        }
        .widget ul li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .widget ul li a i {
            color: #b4945a;
            font-size: 0.85rem;
            width: 1.2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(180, 148, 90, 0.3);
            border-radius: 8px;
            background: rgba(13, 13, 26, 0.8);
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #e6c87c;
        }
        .search-form button {
            background: #b4945a;
            border: none;
            border-radius: 8px;
            padding: 0.7rem 1.2rem;
            color: #0d0d1a;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #d4a843;
        }
        .comment-form textarea,
        .rating-form select,
        .rating-form input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid rgba(180, 148, 90, 0.3);
            border-radius: 8px;
            background: rgba(13, 13, 26, 0.8);
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #e6c87c;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form select {
            appearance: auto;
            cursor: pointer;
        }
        .btn {
            background: #b4945a;
            border: none;
            border-radius: 8px;
            padding: 0.65rem 1.8rem;
            color: #0d0d1a;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #d4a843;
            transform: scale(1.02);
        }
        .btn i {
            font-size: 1rem;
        }
        .card-highlight {
            background: linear-gradient(145deg, rgba(40, 50, 40, 0.5), rgba(20, 20, 40, 0.6));
            border-left: 5px solid #e6c87c;
            border-radius: 0 12px 12px 0;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .card-highlight h3 {
            margin-top: 0;
        }
        .code-box {
            background: #1a1a2e;
            border: 2px dashed #b4945a;
            border-radius: 10px;
            padding: 1rem 1.5rem;
            margin: 1rem 0;
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
            color: #f5e3a3;
            display: inline-block;
            letter-spacing: 1px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: rgba(30, 30, 50, 0.5);
            border-radius: 10px;
            padding: 1.2rem;
            text-align: center;
            border: 1px solid rgba(180, 148, 90, 0.15);
        }
        .stat-item i {
            font-size: 1.8rem;
            color: #e6c87c;
            margin-bottom: 0.4rem;
        }
        .stat-item .num {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f5e3a3;
        }
        .featured-image {
            border-radius: 14px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid rgba(180, 148, 90, 0.2);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: rgba(13, 13, 26, 0.85);
            padding: 0.7rem 1.2rem;
            font-size: 0.88rem;
            color: #b0a898;
            text-align: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 10px;
            border: 1px solid rgba(180, 148, 90, 0.15);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(20, 20, 40, 0.4);
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        th {
            background: rgba(180, 148, 90, 0.15);
            color: #f0e6d3;
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(180, 148, 90, 0.05);
        }
        .interview-block {
            background: rgba(30, 35, 45, 0.7);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid rgba(180, 148, 90, 0.15);
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #e6c87c;
        }
        .interview-block q {
            font-style: italic;
            color: #d4c9b5;
        }
        .faq-item {
            background: rgba(30, 30, 50, 0.3);
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 0.8rem;
            border-left: 4px solid #b4945a;
        }
        .faq-item strong {
            color: #f0e6d3;
            display: block;
            margin-bottom: 0.4rem;
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0d1a, #141428);
            border-top: 2px solid rgba(180, 148, 90, 0.25);
            padding: 2.5rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #e6c87c;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 0.25rem 0;
        }
        .footer-inner ul li a {
            color: #b0a898;
        }
        .footer-inner ul li a:hover {
            color: #f5e3a3;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 1.8rem;
            padding: 1.2rem 0 0.5rem;
            border-top: 1px solid rgba(180, 148, 90, 0.15);
            margin-top: 1.5rem;
        }
        .friend-link a {
            color: #b0a898;
            font-size: 0.92rem;
        }
        .friend-link a:hover {
            color: #f5e3a3;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #6a6a7a;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            margin-top: 1.5rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid rgba(180, 148, 90, 0.15);
                margin-top: 0.75rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.6rem 0.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero {
                padding: 1.5rem 0 1rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .interview-block {
                padding: 1.2rem;
            }
            .card-highlight {
                padding: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .search-form {
                flex-direction: column;
            }
        }
        .text-gold {
            color: #e6c87c;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        .no-underline:hover {
            text-decoration: none;
        }
        :target {
            scroll-margin-top: 90px;
        }
