*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #d97706;
            --primary-dark: #92400e;
            --secondary: #1e1b2e;
            --accent: #fbbf24;
            --bg: #0f0d1a;
            --bg-card: #1a1630;
            --text: #f5f0e8;
            --text-muted: #b0a8a0;
            --border: #2d2840;
            --gold: #f59e0b;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 12px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 1.8em;
            margin-bottom: 0.6em;
        }
        h1 {
            font-size: 2.6rem;
            text-align: center;
            margin-top: 0.4em;
            background: linear-gradient(135deg, var(--gold), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
            color: var(--gold);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent);
        }
        h4 {
            font-size: 1.2rem;
            color: #e8d5b0;
        }
        p {
            margin-bottom: 1.25rem;
            color: var(--text);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(180deg, #1a1630, #0f0d1a);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--gold);
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: var(--text-muted);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            color: #fff;
            background: rgba(217, 119, 6, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 20px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            border-bottom: 1px solid var(--border);
            background: rgba(26, 22, 48, 0.5);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .hero-img {
            margin: 30px auto 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            max-width: 900px;
            border: 2px solid var(--border);
        }
        section {
            margin: 40px 0;
            padding: 30px 24px;
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .section-light {
            background: rgba(26, 22, 48, 0.6);
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 14px 0;
            list-style: none;
        }
        .link-list li a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .link-list li a:hover {
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 30px 0;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--accent);
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: #0f0d1a;
            color: var(--text);
            font-size: 1rem;
            transition: border 0.2s;
            margin-bottom: 16px;
            font-family: var(--font);
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            border: none;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
        }
        .btn-secondary {
            background: var(--border);
            color: var(--text);
        }
        .btn-secondary:hover {
            background: #3d3450;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        footer {
            background: #0a0815;
            border-top: 2px solid var(--border);
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        friend-link {
            display: block;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
            color: var(--text-muted);
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .copyright strong {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 2px;
                padding: 12px 0 4px;
                border-top: 1px solid var(--border);
                margin-top: 8px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 14px;
                width: 100%;
                border-radius: 6px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .form-card {
                padding: 20px 16px;
            }
            section {
                padding: 20px 16px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 8px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero-img {
                margin: 16px auto;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 12px;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: var(--text-muted);
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-2 {
            gap: 0.8rem;
        }
        .tag {
            display: inline-block;
            background: rgba(217, 119, 6, 0.15);
            color: var(--gold);
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(245, 158, 11, 0.12);
            color: var(--gold);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
            margin: 32px 0;
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding: 12px 20px;
            margin: 20px 0;
            background: rgba(217, 119, 6, 0.06);
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: #d4c8b8;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: rgba(15, 13, 26, 0.8);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 16px;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .interview-card {
            background: rgba(15, 13, 26, 0.6);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 18px 0;
        }
        .interview-card .name {
            font-weight: 700;
            color: var(--accent);
        }
        .interview-card .role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        @media (max-width: 600px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-card .num {
                font-size: 1.6rem;
            }
        }
