        * {
            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: #0b0e14;
            color: #e8edf5;
            line-height: 1.8;
            min-height: 100vh;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #181e28;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0b90b;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f141e 0%, #1a2233 100%);
            border-bottom: 3px solid #f0b90b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(240, 185, 11, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #f0b90b;
            text-shadow: 0 0 20px rgba(240, 185, 11, 0.25);
            background: linear-gradient(145deg, #f0b90b, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0b90b;
            margin-right: 6px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.92rem;
            color: #c8d0dc;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .nav-list li a:hover {
            background: rgba(240, 185, 11, 0.12);
            border-color: #f0b90b44;
            color: #f0b90b;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 6px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f0b90b;
            border-radius: 4px;
            transition: all 0.35s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb-wrap {
            background: #151c28;
            border-bottom: 1px solid #1e2a3a;
            padding: 10px 0;
            font-size: 0.85rem;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 6px;
        }
        .breadcrumb li {
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px 0 4px;
            color: #6a7a8e;
        }
        .breadcrumb a {
            color: #8a9bb0;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .breadcrumb .current {
            color: #f0b90b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f141e 0%, #1a2233 50%, #0f141e 100%);
            padding: 60px 0 50px;
            text-align: center;
            border-bottom: 1px solid #1e2a3a;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♠ ♥ ♦ ♣";
            position: absolute;
            bottom: 10px;
            right: 20px;
            font-size: 4rem;
            opacity: 0.04;
            letter-spacing: 20px;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0b90b, #ffd966, #f0b90b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0c0d4;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .badge-wrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }
        .hero .badge {
            background: rgba(240, 185, 11, 0.12);
            border: 1px solid #f0b90b33;
            padding: 6px 20px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #f0b90b;
            font-weight: 500;
        }
        .hero .badge i {
            margin-right: 6px;
        }
        section {
            padding: 40px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0b90b;
            margin-bottom: 24px;
            border-left: 6px solid #f0b90b;
            padding-left: 20px;
        }
        .section-title i {
            margin-right: 12px;
            color: #ffd966;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0b90b;
            margin: 32px 0 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffd966;
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #e0c080;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #d0dae8;
        }
        .highlight {
            color: #f0b90b;
            font-weight: 700;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: #151e2c;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #1e2a3a;
            transition: all 0.4s ease;
        }
        .card:hover {
            border-color: #f0b90b44;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(240, 185, 11, 0.06);
        }
        .card h3 {
            margin-top: 0;
        }
        .card h3 i {
            margin-right: 10px;
            color: #f0b90b;
        }
        .featured-img {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #1e2a3a;
        }
        .featured-img img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #8a9bb0;
            text-align: center;
            padding: 10px;
            background: #0f141e;
            border-top: 1px solid #1e2a3a;
        }
        .search-box {
            background: #151e2c;
            border-radius: 60px;
            padding: 6px 6px 6px 24px;
            display: flex;
            align-items: center;
            border: 1px solid #1e2a3a;
            transition: border 0.3s ease;
            max-width: 500px;
            margin: 20px 0;
        }
        .search-box:focus-within {
            border-color: #f0b90b;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #e8edf5;
            font-size: 1rem;
            padding: 10px 0;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #6a7a8e;
        }
        .search-box button {
            background: #f0b90b;
            border: none;
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .search-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-wrap {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 20px 0;
            background: #151e2c;
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid #1e2a3a;
            max-width: 500px;
        }
        .rating-wrap label {
            font-weight: 600;
            color: #c8d0dc;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-group input {
            display: none;
        }
        .star-group label {
            color: #3a4a5e;
            transition: color 0.2s ease;
            cursor: pointer;
            font-size: 2rem;
        }
        .star-group label:hover,
        .star-group label:hover~label,
        .star-group input:checked~label {
            color: #f0b90b;
        }
        .rating-wrap button {
            align-self: flex-start;
            background: #f0b90b;
            border: none;
            padding: 10px 32px;
            border-radius: 40px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .rating-wrap button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-box {
            background: #151e2c;
            padding: 28px;
            border-radius: 16px;
            border: 1px solid #1e2a3a;
            margin: 24px 0;
            max-width: 700px;
        }
        .comment-box textarea {
            width: 100%;
            background: #0b0e14;
            border: 1px solid #1e2a3a;
            border-radius: 12px;
            padding: 16px;
            color: #e8edf5;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
            transition: border 0.3s ease;
        }
        .comment-box textarea:focus {
            border-color: #f0b90b;
            outline: none;
        }
        .comment-box .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 14px;
            align-items: center;
        }
        .comment-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            background: #0b0e14;
            border: 1px solid #1e2a3a;
            border-radius: 40px;
            padding: 12px 20px;
            color: #e8edf5;
            font-size: 0.95rem;
            transition: border 0.3s ease;
        }
        .comment-box input[type="text"]:focus {
            border-color: #f0b90b;
            outline: none;
        }
        .comment-box button {
            background: #f0b90b;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .comment-box button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interview-block {
            background: #151e2c;
            border-radius: 16px;
            padding: 32px;
            border: 1px solid #1e2a3a;
            margin: 28px 0;
            position: relative;
        }
        .interview-block::before {
            content: "“";
            font-size: 5rem;
            color: #f0b90b15;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
            line-height: 1;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f0b90b;
            font-size: 1.2rem;
        }
        .interview-block .role {
            color: #8a9bb0;
            font-size: 0.9rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .stat-item {
            background: #151e2c;
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            border: 1px solid #1e2a3a;
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            border-color: #f0b90b44;
            transform: translateY(-2px);
        }
        .stat-item .num {
            font-size: 2.8rem;
            font-weight: 900;
            color: #f0b90b;
            line-height: 1.2;
        }
        .stat-item .label {
            color: #8a9bb0;
            font-size: 0.9rem;
            margin-top: 4px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 12px;
            border: 1px solid #1e2a3a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #151e2c;
            min-width: 560px;
        }
        th {
            background: #1a2538;
            color: #f0b90b;
            font-weight: 700;
            padding: 14px 18px;
            text-align: left;
            border-bottom: 2px solid #f0b90b33;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #1e2a3a;
            color: #c8d0dc;
        }
        tr:hover td {
            background: #1a2538;
        }
        footer {
            background: #0a0e16;
            border-top: 2px solid #1e2a3a;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
        }
        footer h4 {
            color: #f0b90b;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 8px;
        }
        footer ul li a {
            color: #8a9bb0;
            font-size: 0.9rem;
        }
        footer ul li a:hover {
            color: #f0b90b;
        }
        friend-link {
            display: block;
            margin: 16px 0;
            padding: 12px 0;
            border-top: 1px solid #1e2a3a;
            border-bottom: 1px solid #1e2a3a;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #8a9bb0;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0b90b;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.85rem;
            color: #5a6a7e;
            border-top: 1px solid #121a26;
            margin-top: 24px;
        }
        .copyright strong {
            color: #8a9bb0;
        }
        @media (max-width: 820px) {
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f141e;
                border-radius: 0 0 16px 16px;
                padding: 12px 0;
                border: 1px solid #1e2a3a;
                margin-top: 10px;
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 1.6rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .rating-wrap {
                padding: 18px 20px;
            }
            .comment-box {
                padding: 18px 20px;
            }
            .interview-block {
                padding: 22px 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero .badge {
                font-size: 0.75rem;
                padding: 4px 14px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-item .num {
                font-size: 2rem;
            }
            .star-group label {
                font-size: 1.6rem;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
                padding: 12px;
                align-items: stretch;
            }
            .search-box input {
                padding: 8px 0;
                margin-bottom: 8px;
            }
            .search-box button {
                justify-content: center;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .text-gold {
            color: #f0b90b;
        }
        .text-muted {
            color: #6a7a8e;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #151e2c;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #8a9bb0;
            border: 1px solid #1e2a3a;
        }
        .updated-badge i {
            color: #f0b90b;
        }
