* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0f1a;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c94b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f1629 0%, #1a2340 100%);
            border-bottom: 2px solid #f0c94b33;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c94b, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f0c94b22;
            display: inline-block;
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .logo-sub {
            font-size: 0.7rem;
            letter-spacing: 3px;
            color: #8899bb;
            display: block;
            font-weight: 400;
            -webkit-text-fill-color: #8899bb;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ccd6ee;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        nav a:hover {
            background: #f0c94b22;
            color: #f0c94b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0c94b66;
            color: #f0c94b;
            font-size: 1.5rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f0c94b22;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 6px;
            padding: 12px 0 4px;
        }
        .nav-mobile.open {
            display: flex;
        }
        .nav-mobile a {
            padding: 10px 16px;
            border-radius: 8px;
            background: #1a2340;
        }
        .breadcrumb {
            padding: 12px 0 6px;
            font-size: 0.85rem;
            color: #8899bb;
        }
        .breadcrumb a {
            color: #8899bb;
        }
        .breadcrumb a:hover {
            color: #f0c94b;
        }
        .breadcrumb span {
            color: #ccd6ee;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f0c94b, #f5a623, #f0c94b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: #aabbdd;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7788aa;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta-info span {
            background: #1a2340;
            padding: 4px 16px;
            border-radius: 30px;
        }
        .content {
            padding: 20px 0 40px;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c94b;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0c94b22;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffde7a;
            margin: 32px 0 12px;
        }
        .content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ccd6ee;
            margin: 24px 0 8px;
        }
        .content p {
            margin-bottom: 18px;
            color: #d0d8ee;
            font-size: 1.02rem;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #d0d8ee;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content .highlight-box {
            background: #1a2340;
            border-left: 4px solid #f0c94b;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .content .highlight-box strong {
            color: #f0c94b;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .content .stat-card {
            background: #141c30;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a3650;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        .content .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f0c94b66;
        }
        .content .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f0c94b;
            display: block;
        }
        .content .stat-card .label {
            font-size: 0.95rem;
            color: #8899bb;
        }
        .content .interview-card {
            background: #141c30;
            border-radius: 16px;
            padding: 24px;
            margin: 20px 0;
            border: 1px solid #2a3650;
            transition: box-shadow 0.2s ease;
        }
        .content .interview-card:hover {
            box-shadow: 0 8px 32px #00000044;
        }
        .content .interview-card .name {
            font-weight: 700;
            color: #f0c94b;
            font-size: 1.1rem;
        }
        .content .interview-card .tag {
            font-size: 0.8rem;
            color: #7788aa;
            background: #0b0f1a;
            padding: 2px 12px;
            border-radius: 30px;
            display: inline-block;
            margin-left: 8px;
        }
        .content .image-wrapper {
            margin: 24px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #141c30;
            padding: 12px;
            border: 1px solid #2a3650;
        }
        .content .image-wrapper figcaption {
            text-align: center;
            color: #8899bb;
            font-size: 0.9rem;
            padding: 8px 0 4px;
        }
        .content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .content table th {
            background: #1a2340;
            color: #f0c94b;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .content table td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a3650;
        }
        .content table tr:hover td {
            background: #1a234066;
        }
        .form-section {
            background: #141c30;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid #2a3650;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #ccd6ee;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0f1a;
            border: 1px solid #2a3650;
            border-radius: 8px;
            color: #e8edf5;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c94b;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #f0c94b, #e0b035);
            color: #0b0f1a;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-block;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px #f0c94b33;
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid #f0c94b66;
            color: #f0c94b;
        }
        .btn-secondary:hover {
            background: #f0c94b11;
        }
        footer {
            background: #0a0e1a;
            border-top: 2px solid #1a2340;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #f0c94b;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer a {
            color: #8899bb;
            display: block;
            padding: 3px 0;
            font-size: 0.95rem;
        }
        footer a:hover {
            color: #f0c94b;
        }
        friend-link {
            display: block;
            padding: 12px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #1a2340;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #ccd6ee;
            transition: 0.2s ease;
        }
        friend-link a:hover {
            background: #f0c94b22;
            color: #f0c94b;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #556688;
            font-size: 0.85rem;
            padding-top: 20px;
            border-top: 1px solid #1a2340;
        }
        .copyright strong {
            color: #8899bb;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            nav.desktop-nav {
                display: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content h2 {
                font-size: 1.6rem;
            }
            .content h3 {
                font-size: 1.3rem;
            }
            .form-section {
                padding: 20px 16px;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
            nav.desktop-nav {
                display: flex;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .content .stat-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 12px;
            }
            .content table {
                font-size: 0.8rem;
            }
            .content table th,
            .content table td {
                padding: 8px 8px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #f0c94b44;
            color: #fff;
        }
