* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #66bfff;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #ffcc4d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #141a24 0%, #1f2a3a 100%);
            border-bottom: 2px solid #2e3d4f;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 210, 0, 0.15);
            display: inline-block;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .logo-sub {
            font-size: 0.7rem;
            display: block;
            color: #8899aa;
            -webkit-text-fill-color: #8899aa;
            letter-spacing: 2px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #66bfff;
            color: #66bfff;
            font-size: 1.6rem;
            padding: 4px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #66bfff22;
        }
        .main-nav {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            background: transparent;
            border: 1px solid transparent;
            transition: 0.25s;
            color: #ccdbe9;
        }
        .main-nav a:hover {
            background: #66bfff18;
            border-color: #66bfff55;
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: #131b26;
            padding: 10px 0;
            border-bottom: 1px solid #1e2a36;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #8899aa;
        }
        .breadcrumb li+li:before {
            content: "›";
            margin-right: 10px;
            color: #556677;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #99b8dd;
        }
        .breadcrumb .active {
            color: #ffd966;
        }
        .content-wrap {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5e6b0, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 3px solid #2e3d4f;
            color: #ffd966;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 36px 0 14px;
            color: #f0c87a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #ccdbe9;
        }
        p {
            margin-bottom: 18px;
            color: #d5e0ec;
            font-size: 1.02rem;
        }
        .hero-img {
            border-radius: 16px;
            margin: 30px 0 40px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            border: 1px solid #2a3a4a;
            width: 100%;
        }
        .last-updated {
            display: inline-block;
            background: #1e2a36;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #99b8dd;
            margin-bottom: 28px;
            border: 1px solid #2e3d4f;
        }
        .last-updated i {
            margin-right: 8px;
        }
        .highlight-box {
            background: #19222e;
            border-left: 5px solid #ffcc4d;
            padding: 20px 28px;
            border-radius: 10px;
            margin: 28px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #141d2a;
            padding: 24px 18px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #253545;
            transition: 0.3s;
        }
        .stat-card:hover {
            border-color: #ffcc4d55;
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd966;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #99b8dd;
        }
        .interview-card {
            background: #111b26;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border: 1px solid #253545;
            border-left: 4px solid #66bfff;
        }
        .interview-card .name {
            font-weight: 700;
            color: #ffd966;
            font-size: 1.1rem;
        }
        .interview-card .tag {
            color: #66bfff;
            font-size: 0.85rem;
        }
        .tip-list {
            list-style: none;
            padding: 0;
        }
        .tip-list li {
            padding: 10px 0 10px 32px;
            position: relative;
            border-bottom: 1px solid #1e2a36;
        }
        .tip-list li:before {
            content: "🎯";
            position: absolute;
            left: 0;
            top: 10px;
            font-size: 1.1rem;
        }
        .btn-search,
        .btn-comment,
        .btn-score {
            display: inline-block;
            background: #1f2a3a;
            border: 1px solid #3a4c5e;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            color: #e8edf2;
            transition: 0.25s;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-search:hover,
        .btn-comment:hover,
        .btn-score:hover {
            background: #2e3d4f;
            border-color: #66bfff;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #ccdbe9;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2e3d4f;
            background: #141d2a;
            color: #e8edf2;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #66bfff;
            box-shadow: 0 0 0 3px #66bfff22;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #445566;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #ffcc4d;
        }
        .star-rating .fas.fa-star {
            color: #ffcc4d;
        }
        .section-card {
            background: #111b26;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #1e2a36;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            list-style: none;
            padding: 0;
            margin: 18px 0;
        }
        .link-list-inline li a {
            background: #1a2635;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a3a4a;
            transition: 0.2s;
        }
        .link-list-inline li a:hover {
            border-color: #ffcc4d55;
            background: #243244;
            text-decoration: none;
        }
        .site-footer {
            background: #0d121c;
            border-top: 2px solid #1e2a36;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            color: #ffd966;
            margin-bottom: 16px;
            font-size: 1.05rem;
            border-bottom: 2px solid #1e2a36;
            padding-bottom: 8px;
        }
        .friend-link {
            display: block;
            margin-top: 20px;
            padding: 18px 20px;
            background: #141d2a;
            border-radius: 12px;
            border: 1px solid #253545;
        }
        .friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: #1a2635;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a3a4a;
        }
        .friend-link a:hover {
            border-color: #ffcc4d55;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #1a2635;
            color: #667788;
            font-size: 0.85rem;
        }
        .copyright a {
            color: #99b8dd;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 18px;
                border-radius: 10px;
                border: 1px solid #1e2a36;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                gap: 12px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .section-card {
                padding: 20px 16px;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .text-muted {
            color: #8899aa;
            font-size: 0.9rem;
        }
        .tag-badge {
            display: inline-block;
            background: #2e3d4f;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            color: #ccdbe9;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111b26;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #1e2a36;
        }
        th {
            background: #1a2635;
            color: #ffd966;
            font-weight: 600;
        }
        tr:hover td {
            background: #182233;
        }
        .comment-item {
            background: #141d2a;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 14px;
            border-left: 3px solid #66bfff;
        }
        .comment-item .author {
            font-weight: 700;
            color: #ffd966;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #667788;
        }
