        * {
            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, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffdd55;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #111827, #1e293b);
            border-bottom: 2px solid #facc1540;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #94a3b8;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #facc1520;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            align-items: center;
        }
        .main-nav a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            color: #facc15;
            border-bottom-color: #facc15;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #facc15;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .active {
            color: #facc15;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.8rem;
            background: linear-gradient(135deg, #facc15, #fb923c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem;
            color: #facc15;
            border-left: 5px solid #f97316;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #fb923c;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.6rem;
            color: #fcd34d;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d1d5db;
        }
        .highlight {
            background: #facc1520;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
            color: #facc15;
        }
        .badge {
            display: inline-block;
            background: #f97316;
            color: #0b0e1a;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #94a3b8;
            font-size: 0.9rem;
            margin: 0.5rem 0 1.5rem;
            padding: 0.5rem 1rem;
            background: #1e293b;
            border-radius: 30px;
            width: fit-content;
        }
        .card {
            background: #1e293b;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #334155;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #facc15;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f172a;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e293b;
        }
        th {
            background: #facc1520;
            color: #facc15;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.8rem;
        }
        tr:hover td {
            background: #1e293b80;
        }
        .code-tag {
            background: #0b0e1a;
            padding: 0.2rem 0.8rem;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            font-weight: 700;
            color: #4ade80;
            letter-spacing: 1px;
            border: 1px dashed #4ade8060;
            display: inline-block;
            margin: 0.2rem 0;
        }
        .copy-btn {
            background: #facc15;
            color: #0b0e1a;
            border: none;
            padding: 0.2rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.8rem;
            transition: 0.2s;
        }
        .copy-btn:hover {
            background: #fbbf24;
            transform: scale(1.04);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: #cbd5e1;
        }
        input,
        textarea,
        select {
            width: 100%;
            padding: 0.75rem 1rem;
            background: #0f172a;
            border: 1px solid #334155;
            border-radius: 10px;
            color: #e8edf5;
            font-size: 1rem;
            transition: 0.2s;
            font-family: inherit;
        }
        input:focus,
        textarea:focus {
            outline: none;
            border-color: #facc15;
            box-shadow: 0 0 0 3px #facc1520;
        }
        textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 2rem;
            background: linear-gradient(135deg, #facc15, #f97316);
            color: #0b0e1a;
            font-weight: 700;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.25s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px #f9731640;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #facc15;
            color: #facc15;
        }
        .btn-outline:hover {
            background: #facc1510;
        }
        .search-box {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 2rem;
            cursor: pointer;
            color: #475569;
            transition: 0.2s;
        }
        .star-rating .star {
            transition: 0.15s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #facc15;
            transform: scale(1.1);
        }
        .comment-item {
            background: #0f172a;
            border-radius: 12px;
            padding: 1.2rem 1.4rem;
            margin-bottom: 1rem;
            border-left: 4px solid #facc15;
        }
        .comment-author {
            font-weight: 700;
            color: #facc15;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-left: 1rem;
        }
        .comment-body {
            margin-top: 0.4rem;
            color: #cbd5e1;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #1e293b;
            margin-top: 2rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            padding: 0;
            justify-content: center;
        }
        friend-link a {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #facc15;
        }
        .site-footer {
            background: #0f172a;
            border-top: 2px solid #1e293b;
            padding: 2rem 0;
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
            color: #475569;
        }
        .interview-box {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border-left: 6px solid #f97316;
            margin: 1.8rem 0;
        }
        .interview-box .speaker {
            font-weight: 700;
            color: #facc15;
            font-size: 1.1rem;
        }
        .interview-box .role {
            color: #94a3b8;
            font-size: 0.85rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #0f172a;
            border-radius: 14px;
            padding: 1.4rem 1rem;
            text-align: center;
            border: 1px solid #1e293b;
        }
        .stat-card .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #facc15;
            line-height: 1.2;
        }
        .stat-card .label {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card {
                padding: 1.2rem 1rem;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.6rem;
                padding: 1rem 0 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.5rem 0;
                border-bottom: 1px solid #1e293b;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                min-width: auto;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-center {
            text-align: center;
        }
        .emoji-big {
            font-size: 2rem;
        }
        .tagline {
            color: #94a3b8;
            font-size: 1.1rem;
            border-left: 4px solid #f97316;
            padding-left: 1.2rem;
            margin: 0.8rem 0 1.8rem;
        }
