*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg: #0d0f14;
            --surface: #1a1e26;
            --surface2: #242a36;
            --accent: #f5c842;
            --accent2: #e86a33;
            --text: #f0ece4;
            --text2: #b8b0a4;
            --border: #2f3646;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --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;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--surface);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent2);
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border);
            color: var(--text);
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: var(--accent);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu a {
            display: block;
            padding: 8px 16px;
            border-radius: 8px;
            background: var(--surface2);
            color: var(--text2);
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.2s;
            border: 1px solid transparent;
        }
        .nav-menu a:hover {
            background: var(--accent);
            color: #0d0f14;
            border-color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--surface2);
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "▸";
            margin-right: 10px;
            color: var(--text2);
        }
        .breadcrumb a {
            color: var(--text2);
        }
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 32px 0 48px;
        }
        .article-header {
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5c842, #e86a33);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            color: var(--text2);
            font-size: 0.92rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 16px;
            margin-bottom: 16px;
        }
        .meta-info i {
            margin-right: 6px;
            color: var(--accent);
        }
        .last-updated {
            font-weight: 600;
            color: var(--accent);
        }
        .search-section {
            background: var(--surface);
            padding: 24px 28px;
            border-radius: var(--radius);
            margin-bottom: 40px;
            border: 1px solid var(--border);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
        }
        .search-section button {
            padding: 14px 32px;
            background: var(--accent);
            color: #0d0f14;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--accent);
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--text2);
        }
        p {
            margin-bottom: 18px;
        }
        .highlight-box {
            background: var(--surface);
            border-left: 4px solid var(--accent);
            padding: 18px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: var(--surface);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border);
            transition: 0.2s;
        }
        .stat-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: var(--text2);
            margin-top: 4px;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--surface2);
            padding: 8px;
        }
        .featured-image img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .featured-image figcaption {
            padding: 12px 8px 4px;
            font-size: 0.88rem;
            color: var(--text2);
            text-align: center;
            font-style: italic;
        }
        .interview-block {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid var(--border);
            position: relative;
        }
        .interview-block::before {
            content: "🎙️";
            font-size: 2.2rem;
            position: absolute;
            top: -14px;
            left: 24px;
            background: var(--bg);
            padding: 0 10px;
        }
        .interview-block .q {
            color: var(--accent);
            font-weight: 700;
        }
        .interview-block .a {
            color: var(--text2);
            margin-bottom: 16px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: var(--surface2);
            color: var(--accent);
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
            border-bottom: 2px solid var(--accent);
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            background: var(--surface);
        }
        .data-table tr:hover td {
            background: var(--surface2);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width:700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: var(--surface);
            padding: 24px 28px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            color: var(--text);
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 14px 24px;
            background: var(--accent);
            color: #0d0f14;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .feedback-card button:hover {
            background: #ffd966;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: var(--border);
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: 0.15s;
            color: var(--border);
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: var(--accent);
        }
        friend-link {
            display: block;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin-top: 40px;
            border: 1px solid var(--border);
        }
        friend-link::before {
            content: "🔗 Friends & Partners";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 16px;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
        }
        .friend-list a {
            background: var(--surface2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid var(--border);
            transition: 0.2s;
        }
        .friend-list a:hover {
            border-color: var(--accent);
            background: transparent;
        }
        footer {
            background: var(--surface);
            border-top: 2px solid var(--border);
            padding: 32px 0 24px;
            margin-top: 32px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 0.88rem;
            color: var(--text2);
        }
        .footer-inner .copy {
            font-weight: 500;
        }
        .footer-inner a {
            color: var(--text2);
        }
        .footer-inner a:hover {
            color: var(--accent);
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                text-align: center;
                padding: 12px;
            }
            .header-inner {
                padding: 10px 0;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .meta-info {
                gap: 10px 16px;
                font-size: 0.82rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .feedback-card {
                padding: 18px 16px;
            }
            .data-table {
                font-size: 0.82rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        ::selection {
            background: var(--accent);
            color: #0d0f14;
        }
