        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0a0e17;
            color: #e8e8e8;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #c9a84c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f0d680;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0d680, #c9a84c, #a07d30);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0.5em 0 0.3em;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d680;
            border-left: 5px solid #c9a84c;
            padding-left: 16px;
            margin: 1.8em 0 0.8em;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0c070;
            margin: 1.4em 0 0.6em;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4b860;
            margin: 1em 0 0.4em;
        }
        p {
            margin-bottom: 1.2em;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            color: #c0c8d8;
            font-weight: 300;
            max-width: 780px;
        }
        strong {
            color: #f5e8b0;
        }
        em {
            color: #b8c4d8;
        }
        .site-header {
            padding: 20px 0 12px;
            border-bottom: 1px solid #1e2a3a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f0d680;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f0d680, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #c9a84c;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8d0e0;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: #1e2a3a;
            color: #f0d680;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #c9a84c22;
            color: #f0d680;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #f0d680;
            border-radius: 4px;
            transition: 0.3s;
        }
        .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 {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            padding: 12px 0 8px;
            font-size: 0.88rem;
            color: #8898b0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #556;
        }
        .breadcrumb a {
            color: #b0b8c8;
        }
        .breadcrumb a:hover {
            color: #f0d680;
        }
        .breadcrumb .current {
            color: #f0d680;
        }
        .search-form {
            display: flex;
            gap: 0;
            max-width: 520px;
            margin: 20px 0 30px;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid #2a3a4a;
            background: #111a28;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #e8e8e8;
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: #6a7a8a;
        }
        .search-form button {
            padding: 14px 24px;
            background: #c9a84c;
            border: none;
            color: #0a0e17;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #e0c060;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        .team-card {
            background: #121c2a;
            border-radius: 16px;
            padding: 24px 20px 20px;
            border: 1px solid #1e2a3a;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border-color: #c9a84c44;
        }
        .team-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .team-card h3 i {
            color: #c9a84c;
        }
        .team-card .region-tag {
            display: inline-block;
            font-size: 0.75rem;
            padding: 2px 12px;
            border-radius: 20px;
            background: #1e2a3a;
            color: #b0b8c8;
            margin-bottom: 10px;
        }
        .team-card .record {
            color: #a0a8b8;
            font-size: 0.92rem;
        }
        .stat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 30px;
            background: #111a28;
            border-radius: 12px;
            overflow: hidden;
        }
        .stat-table th {
            background: #1e2a3a;
            color: #f0d680;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .stat-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #1a2636;
        }
        .stat-table tr:hover td {
            background: #182434;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0 30px;
        }
        .feedback-card {
            background: #111a28;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #1e2a3a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a3a4a;
            background: #0d1520;
            color: #e8e8e8;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            font-family: inherit;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #c9a84c;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 12px 20px;
            background: #c9a84c;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            color: #0a0e17;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .feedback-card button:hover {
            background: #e0c060;
            transform: scale(1.01);
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            color: #3a4a5a;
            transition: color 0.2s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0d680;
        }
        friend-link {
            display: block;
            padding: 24px 0 16px;
            border-top: 1px solid #1e2a3a;
            margin-top: 40px;
        }
        friend-link .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 12px 0 0;
        }
        friend-link .friend-list li a {
            font-size: 0.92rem;
            color: #a0a8b8;
        }
        friend-link .friend-list li a:hover {
            color: #f0d680;
        }
        .site-footer {
            padding: 24px 0 32px;
            border-top: 1px solid #1e2a3a;
            margin-top: 20px;
            font-size: 0.88rem;
            color: #6a7a8a;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .site-footer .copyright i {
            margin-right: 6px;
        }
        @media (max-width: 860px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0a0e17;
                padding: 12px 0 20px;
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-wrapper .nav-list {
                order: 3;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            .stat-table {
                font-size: 0.82rem;
            }
            .stat-table th,
            .stat-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 0 6px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .search-form input {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .search-form button {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
            .team-card {
                padding: 16px;
            }
        }
        .mt-1 {
            margin-top: 1em;
        }
        .mt-2 {
            margin-top: 2em;
        }
        .mb-1 {
            margin-bottom: 1em;
        }
        .mb-2 {
            margin-bottom: 2em;
        }
        .text-accent {
            color: #f0d680;
        }
        .badge {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            background: #1e2a3a;
            color: #c9a84c;
        }
        .divider {
            border: none;
            height: 1px;
            background: #1e2a3a;
            margin: 32px 0;
        }
        .featured-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: #111a28;
            font-size: 0.88rem;
            color: #8898b0;
            border-top: 1px solid #1e2a3a;
        }
        .interview-block {
            background: #101826;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 4px solid #c9a84c;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #f0d680;
        }
        .highlight-box {
            background: #0f1728;
            border-radius: 12px;
            padding: 20px 24px;
            border: 1px solid #c9a84c22;
            margin: 20px 0;
        }
        .highlight-box i {
            color: #c9a84c;
            margin-right: 8px;
        }
        :target {
            scroll-margin-top: 80px;
        }
