        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0c0c14;
            color: #e8e8ec;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #f5d742;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #d4af37;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #f0d060;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #e8c84a;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4b44a;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            color: #d0d0dd;
            font-weight: 300;
        }
        strong {
            color: #f5d742;
        }
        .highlight-box {
            background: #1a1a2e;
            border-left: 4px solid #d4af37;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .site-header {
            background: #111122;
            border-bottom: 2px solid #2a2a3e;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #d4af37;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #d4af37, #f5d742);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #888;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c0c0d0;
            transition: all 0.2s ease;
        }
        .nav-menu a:hover {
            background: #1f1f35;
            color: #d4af37;
        }
        .nav-menu a.active {
            color: #d4af37;
            background: #1f1f35;
        }
        .breadcrumb {
            background: #0e0e1a;
            padding: 0.7rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #1e1e30;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #666;
        }
        .breadcrumb a {
            color: #999;
        }
        .breadcrumb .current {
            color: #d4af37;
        }
        .hero {
            padding: 3rem 0 2rem 0;
            background: radial-gradient(ellipse at 50% 0%, #1a1a30 0%, #0c0c14 70%);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-image {
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.12);
            border: 1px solid #2a2a3e;
        }
        .search-wrap {
            background: #111122;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            border: 1px solid #2a2a3e;
        }
        .search-wrap form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-wrap input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #1a1a2e;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #d4af37;
        }
        .search-wrap button {
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            border: none;
            background: #d4af37;
            color: #0c0c14;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            font-size: 1rem;
        }
        .search-wrap button:hover {
            background: #f5d742;
            transform: translateY(-2px);
        }
        .content-section {
            padding: 1.5rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #13131f;
            border-radius: 14px;
            padding: 1.5rem;
            border: 1px solid #22223a;
            transition: all 0.3s ease;
        }
        .card:hover {
            border-color: #d4af37;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.08);
        }
        .card i {
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 0.8rem;
        }
        .card h3 {
            margin-top: 0;
        }
        .stat-badge {
            display: inline-block;
            background: #d4af37;
            color: #0c0c14;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
            border-radius: 12px;
            border: 1px solid #22223a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111122;
        }
        th,
        td {
            padding: 0.9rem 1.2rem;
            text-align: left;
            border-bottom: 1px solid #1e1e30;
        }
        th {
            background: #1a1a2e;
            color: #d4af37;
            font-weight: 700;
            font-size: 0.95rem;
        }
        td {
            color: #ccc;
        }
        tr:hover td {
            background: #18182a;
        }
        .interview-block {
            background: #111122;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #2a2a3e;
            position: relative;
        }
        .interview-block::before {
            content: "💬";
            position: absolute;
            top: -12px;
            left: 20px;
            font-size: 1.8rem;
            background: #0c0c14;
            padding: 0 0.5rem;
        }
        .interview-block .quote {
            font-style: italic;
            color: #c8c8d8;
            padding-left: 1rem;
            border-left: 3px solid #d4af37;
            margin: 0.8rem 0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: #111122;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #22223a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #1a1a2e;
            color: #eee;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #d4af37;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            border: none;
            background: #d4af37;
            color: #0c0c14;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #f5d742;
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: #d4af37;
        }
        .star-rating i:hover {
            color: #d4af37;
        }
        .faq-item {
            background: #111122;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 0.8rem;
            border: 1px solid #1e1e30;
            cursor: pointer;
            transition: border 0.3s;
        }
        .faq-item:hover {
            border-color: #d4af37;
        }
        .faq-item .question {
            font-weight: 700;
            color: #e8c84a;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item .answer {
            margin-top: 0.8rem;
            color: #bcbcc8;
            display: none;
        }
        .faq-item.open .answer {
            display: block;
        }
        .faq-item .toggle-icon {
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        .faq-item.open .toggle-icon {
            transform: rotate(45deg);
        }
        .site-footer {
            background: #0a0a14;
            border-top: 2px solid #1a1a2e;
            padding: 2.5rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #d4af37;
            margin-bottom: 0.8rem;
        }
        .footer-inner a {
            display: block;
            color: #999;
            padding: 0.2rem 0;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #d4af37;
        }
        .friend-link {
            display: block;
            margin-top: 0.3rem;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #1a1a2e;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #111122;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2a3e;
                margin-top: 0.8rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-wrap form {
                flex-direction: column;
            }
            .search-wrap input[type="text"] {
                min-width: unset;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.6rem 0.8rem;
            }
            .feedback-card {
                padding: 1.2rem 1.2rem;
            }
            .interview-block {
                padding: 1.2rem 1.2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .header-inner {
                padding: 0.6rem 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero {
                padding: 1.5rem 0;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .stat-badge {
                font-size: 0.7rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .tag {
            display: inline-block;
            background: #1f1f35;
            color: #d4af37;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
            margin-bottom: 0.4rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 2rem 0;
            opacity: 0.3;
        }
        .update-badge {
            color: #999;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .update-badge i {
            color: #d4af37;
        }
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #d4af37;
            color: #0c0c14;
            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(212, 175, 55, 0.3);
            transition: all 0.3s;
            z-index: 50;
            opacity: 0;
            pointer-events: none;
        }
        .back-top.show {
            opacity: 1;
            pointer-events: auto;
        }
        .back-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
        }
