* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e1a;
            color: #e3e9f5;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #f0b34b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #141b2b, #1e2a44);
            padding: 16px 0;
            border-bottom: 2px solid #f0b34b33;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0b34b, #ffdd88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px #f0b34b22;
        }
        .my-logo:hover {
            text-decoration: none;
            -webkit-text-fill-color: #ffdd88;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e3e9f5;
            cursor: pointer;
            padding: 4px 10px;
        }
        nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #d0d9ee;
            transition: 0.2s;
        }
        nav a:hover {
            background: #f0b34b22;
            color: #f0b34b;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #8892b0;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #f0b34b;
        }
        .breadcrumb span {
            color: #c0c8e0;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                background: #1a2340;
            }
            .header-inner {
                align-items: center;
            }
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #f0b34b, #ffdd99);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .content h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            color: #f0d080;
            border-left: 5px solid #f0b34b;
            padding-left: 18px;
        }
        .content h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8c87a;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #d8bf7a;
        }
        .content p {
            margin-bottom: 18px;
            color: #d5ddee;
            font-size: 1.02rem;
        }
        .content strong {
            color: #f5e3b0;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #d0d9ee;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .content .highlight-box {
            background: #1a2340dd;
            border-left: 4px solid #f0b34b;
            padding: 18px 24px;
            border-radius: 10px;
            margin: 24px 0;
        }
        .content .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 20px 0 28px;
        }
        .content .stat-card {
            background: #1a2340;
            padding: 18px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2a3555;
        }
        .content .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0b34b;
            display: block;
        }
        .content .stat-card .label {
            font-size: 0.9rem;
            color: #a0aac0;
        }
        .content .interview-block {
            background: #141b2b;
            padding: 22px 26px;
            border-radius: 16px;
            margin: 28px 0;
            border: 1px solid #2a3555;
        }
        .content .interview-block .quote {
            font-style: italic;
            color: #d8dff0;
            font-size: 1.05rem;
            border-left: 3px solid #f0b34b;
            padding-left: 18px;
            margin: 12px 0;
        }
        .content .featured-image {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .content .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .content .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8892b0;
            padding: 8px 0 0;
        }
        .content .last-updated {
            font-size: 0.85rem;
            color: #8892b0;
            margin-bottom: 20px;
            display: block;
            border-bottom: 1px solid #1e2844;
            padding-bottom: 10px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: #141b2b;
            border-radius: 16px;
            padding: 22px 20px;
            border: 1px solid #1e2844;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #f0d080;
            margin-bottom: 14px;
            border-bottom: 1px solid #2a3555;
            padding-bottom: 8px;
        }
        .sidebar-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .sidebar-card input,
        .sidebar-card textarea,
        .sidebar-card select {
            background: #0b0e1a;
            border: 1px solid #2a3555;
            border-radius: 8px;
            padding: 10px 14px;
            color: #e3e9f5;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .sidebar-card input:focus,
        .sidebar-card textarea:focus,
        .sidebar-card select:focus {
            border-color: #f0b34b;
            outline: none;
            box-shadow: 0 0 0 3px #f0b34b22;
        }
        .sidebar-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .sidebar-card .btn {
            background: #f0b34b;
            color: #0b0e1a;
            border: none;
            padding: 10px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .sidebar-card .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .sidebar-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .sidebar-card .star-rating input {
            display: none;
        }
        .sidebar-card .star-rating label {
            font-size: 1.6rem;
            color: #3a4565;
            cursor: pointer;
            transition: 0.2s;
        }
        .sidebar-card .star-rating input:checked~label,
        .sidebar-card .star-rating label:hover,
        .sidebar-card .star-rating label:hover~label {
            color: #f0b34b;
        }
        .sidebar-card .link-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .sidebar-card .link-list a {
            padding: 6px 0;
            border-bottom: 1px solid #1a2340;
            font-size: 0.95rem;
        }
        .sidebar-card .link-list a i {
            margin-right: 8px;
            color: #f0b34b;
            width: 18px;
        }
        footer {
            background: #0d1120;
            border-top: 2px solid #1e2844;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        @media (max-width: 768px) {
            footer .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        footer h4 {
            color: #f0d080;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        footer p,
        footer a {
            color: #8892b0;
            font-size: 0.9rem;
        }
        footer a:hover {
            color: #f0b34b;
        }
        friend-link {
            display: block;
            background: #0d1120;
            padding: 16px 0;
            border-top: 1px solid #1a2340;
            margin-top: 20px;
        }
        friend-link .friend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        friend-link .friend-grid a {
            color: #8892b0;
            font-size: 0.9rem;
        }
        friend-link .friend-grid a:hover {
            color: #f0b34b;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 0;
            font-size: 0.85rem;
            color: #5a6480;
            border-top: 1px solid #1a2340;
            margin-top: 16px;
        }
        .schema-hidden {
            display: none;
        }
        ::selection {
            background: #f0b34b55;
            color: #fff;
        }
        .content .fa-ul {
            margin-left: 2em;
        }
        .content .fa-ul li {
            margin-bottom: 10px;
        }
        @media (max-width: 480px) {
            .content h1 {
                font-size: 1.9rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            .sidebar-card {
                padding: 16px;
            }
        }
