        *,
        *::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, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffc857;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ::selection {
            background: #f5a623;
            color: #0b0e14;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #141a24;
        }
        ::-webkit-scrollbar-thumb {
            background: #2c3a4a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5a623;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #0d111a;
            border-bottom: 2px solid #1f2a36;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5a623, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5a623;
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8899aa;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8edf2;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a36;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #bcc9d6;
            transition: all 0.2s;
            position: relative;
        }
        nav a:hover,
        nav a.active {
            color: #f5a623;
            background: rgba(245, 166, 35, 0.08);
        }
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: #f5a623;
            border-radius: 2px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 8px;
                gap: 2px;
                border-top: 1px solid #1f2a36;
                margin-top: 10px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                width: 100%;
                border-radius: 4px;
            }
            .header-inner {
                padding: 10px 0;
            }
        }
        .breadcrumb {
            background: #0d111a;
            padding: 10px 0;
            border-bottom: 1px solid #1a222e;
            font-size: 0.85rem;
            color: #8899aa;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 8px;
            color: #4a5a6a;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5a623;
        }
        .breadcrumb .current {
            color: #f5a623;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: linear-gradient(180deg, #0d111a 0%, #141e2a 100%);
            border-bottom: 1px solid #1f2a36;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #aabbcc;
            max-width: 700px;
            margin: 0 auto 18px;
        }
        .hero .badge {
            display: inline-block;
            background: #1f2a36;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #f5a623;
            border: 1px solid #2a3a4a;
        }
        .hero .badge i {
            margin-right: 6px;
        }
        section {
            padding: 40px 0;
            border-bottom: 1px solid #141e2a;
        }
        section:last-of-type {
            border-bottom: none;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0f4f8;
            margin-bottom: 20px;
            border-left: 4px solid #f5a623;
            padding-left: 16px;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e0e8f0;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ccdae6;
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: #c5d2de;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        .card {
            background: #121a26;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #1f2a36;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            border-color: #2a3a4a;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .stats-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: #121a26;
            border-radius: 10px;
            padding: 16px 22px;
            flex: 1 1 160px;
            border: 1px solid #1f2a36;
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5a623;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #8899aa;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .featured-img {
            border-radius: 12px;
            overflow: hidden;
            margin: 28px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #0d111a;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-img figcaption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: #8899aa;
            background: #0d111a;
            border-top: 1px solid #1f2a36;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 10px;
            border: 1px solid #1f2a36;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #121a26;
            font-size: 0.92rem;
        }
        th {
            background: #1a2533;
            color: #f5a623;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-top: 1px solid #1f2a36;
            color: #c5d2de;
        }
        tr:hover td {
            background: #1a2533;
        }
        .interview-box {
            background: #0f1722;
            border-left: 4px solid #f5a623;
            padding: 20px 24px;
            border-radius: 0 10px 10px 0;
            margin: 20px 0;
        }
        .interview-box .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #d4e0ea;
        }
        .interview-box .attribution {
            margin-top: 10px;
            color: #f5a623;
            font-weight: 500;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            padding: 0;
            list-style: none;
            margin: 16px 0;
        }
        .link-list li a {
            background: #121a26;
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid #1f2a36;
            font-size: 0.88rem;
            display: inline-block;
            transition: all 0.2s;
        }
        .link-list li a:hover {
            background: #1f2a36;
            border-color: #f5a623;
        }
        .form-card {
            background: #121a26;
            border-radius: 12px;
            padding: 28px;
            border: 1px solid #1f2a36;
            max-width: 600px;
            margin: 20px 0;
        }
        .form-card label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #ccdae6;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 10px 14px;
            border-radius: 8px;
            border: 1px solid #2a3a4a;
            background: #0d111a;
            color: #e8edf2;
            font-size: 0.95rem;
            margin-bottom: 16px;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #f5a623;
            box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #f5a623;
            color: #0b0e14;
            border: none;
            padding: 10px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .form-card .btn:hover {
            background: #ffc857;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a4a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        footer {
            background: #0a0e16;
            border-top: 2px solid #1f2a36;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 768px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        footer h4 {
            color: #f0f4f8;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        footer p,
        footer a {
            font-size: 0.9rem;
            color: #8899aa;
        }
        footer a:hover {
            color: #f5a623;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 16px 0;
            border-top: 1px solid #1f2a36;
            margin-top: 20px;
        }
        .friend-link a {
            background: #121a26;
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid #1f2a36;
            font-size: 0.85rem;
        }
        .friend-link a:hover {
            border-color: #f5a623;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #5a6a7a;
            border-top: 1px solid #141e2a;
            margin-top: 20px;
        }
        .last-updated {
            display: inline-block;
            background: #121a26;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #8899aa;
            border: 1px solid #1f2a36;
        }
        .last-updated i {
            margin-right: 6px;
            color: #f5a623;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .text-muted {
            color: #8899aa;
        }
        .highlight {
            color: #f5a623;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .tag {
            display: inline-block;
            background: #1a2533;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            color: #f5a623;
        }
