* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0d17;
            color: #e8eaf0;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f121f 0%, #1a1e2f 100%);
            border-bottom: 2px solid #f5c54233;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .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, #f5c542, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .logo-sub {
            font-size: 0.7rem;
            color: #8899bb;
            display: block;
            margin-top: -4px;
            letter-spacing: 2px;
            font-weight: 400;
            -webkit-text-fill-color: #8899bb;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f5c54222;
        }
        nav {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            background: #12162a;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #1f2440;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb span {
            color: #8899bb;
        }
        .breadcrumb a {
            color: #f5c542;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #3a4a6a;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1e3a 0%, #0b0d17 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f5c542;
            text-shadow: 0 0 40px #f5c54222;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            max-width: 800px;
            margin: 0 auto;
            color: #b0c4e0;
            font-size: 1.1rem;
        }
        .hero .meta {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #7a8aaa;
        }
        .hero .meta i {
            margin-right: 6px;
        }
        .featured-img-wrap {
            margin: 32px auto;
            max-width: 900px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        }
        .featured-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }
        .featured-img-wrap img:hover {
            transform: scale(1.02);
        }
        .content {
            padding: 30px 0 60px;
        }
        .content h2 {
            font-size: 2rem;
            color: #f5c542;
            border-left: 5px solid #f5c542;
            padding-left: 18px;
            margin: 48px 0 22px 0;
        }
        .content h3 {
            font-size: 1.5rem;
            color: #e0c87a;
            margin: 36px 0 16px 0;
        }
        .content h4 {
            font-size: 1.2rem;
            color: #c8b870;
            margin: 24px 0 12px 0;
            font-weight: 600;
        }
        .content p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d0d8e8;
        }
        .content ul,
        .content ol {
            margin: 16px 0 22px 30px;
            color: #c8d0e0;
        }
        .content li {
            margin-bottom: 8px;
        }
        .highlight {
            background: #1a1e3a;
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 600;
            color: #f5c542;
        }
        .blockquote {
            border-left: 4px solid #f5c542;
            background: #14182e;
            padding: 20px 28px;
            margin: 28px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #b8c8e8;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #14182e;
            padding: 24px 18px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #1f2440;
            transition: 0.3s;
        }
        .stat-card:hover {
            border-color: #f5c54266;
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5c542;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #8899bb;
            margin-top: 6px;
        }
        .interview-box {
            background: #0f1224;
            border: 1px solid #2a2f4a;
            border-radius: 16px;
            padding: 28px;
            margin: 32px 0;
        }
        .interview-box .name {
            font-weight: 700;
            color: #f5c542;
        }
        .interview-box .tag {
            color: #7a8aaa;
            font-size: 0.85rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1224;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #1a1e3a;
            color: #f5c542;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #1f2440;
            color: #c8d0e0;
        }
        tr:hover td {
            background: #14182e;
        }
        .interact-section {
            background: #0f1224;
            border-radius: 18px;
            padding: 36px 30px;
            margin: 48px 0;
            border: 1px solid #1f2440;
        }
        .interact-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 18px 0 10px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #2a2f4a;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .search-form button,
        .comment-form button,
        .score-form button {
            padding: 14px 28px;
            background: #f5c542;
            color: #0b0d17;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #2a2f4a;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: 0.3s;
            margin: 12px 0;
        }
        .comment-form textarea:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .comment-form .row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #2a2f4a;
            background: #0b0d17;
            color: #e8eaf0;
            outline: none;
        }
        .comment-form .row input:focus {
            border-color: #f5c542;
        }
        .score-form {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
            margin: 12px 0;
        }
        .score-form select {
            padding: 12px 18px;
            border-radius: 10px;
            border: 1px solid #2a2f4a;
            background: #0b0d17;
            color: #e8eaf0;
            font-size: 1rem;
            outline: none;
        }
        .score-form select:focus {
            border-color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid #1f2440;
            margin-top: 40px;
        }
        friend-link .fl-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 14px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #b0c4e0;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        footer {
            background: #070912;
            padding: 30px 0 20px;
            border-top: 2px solid #1a1e3a;
            text-align: center;
            color: #5a6a8a;
            font-size: 0.9rem;
        }
        footer .copy {
            margin-top: 10px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                padding: 20px 0 10px;
                border-top: 1px solid #1f2440;
                margin-top: 16px;
            }
            nav.show {
                display: flex;
            }
            nav a {
                font-size: 1.1rem;
                padding: 8px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.25rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interact-section {
                padding: 24px 18px;
            }
            .search-form input[type="text"] {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .content p {
                font-size: 0.95rem;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5c542;
            color: #0b0d17;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
            transition: 0.3s;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(245, 197, 66, 0.5);
        }
        @media (max-width: 600px) {
            .scroll-top {
                bottom: 18px;
                right: 18px;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
        }
