        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #ffd166;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f2a 0%, #1a1a3e 100%);
            border-bottom: 2px solid rgba(245, 166, 35, 0.3);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5a623, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: #f5a623;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            color: #c8c8e0;
            font-weight: 500;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-list li a:hover {
            color: #f5a623;
            border-bottom-color: #f5a623;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f0f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #f5a623;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
        }
        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #a0a0b8;
        }
        .breadcrumb-list li+li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #f5a623;
            margin-right: 6px;
        }
        .breadcrumb-list a {
            color: #c8c8e0;
        }
        .breadcrumb-list a:hover {
            color: #f5a623;
        }
        .breadcrumb-list .current {
            color: #f5a623;
            font-weight: 600;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, #f5a623, #e94560, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b0b0c8;
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            font-size: 0.95rem;
            color: #8888aa;
        }
        .hero-meta span i {
            margin-right: 6px;
            color: #f5a623;
        }
        section {
            padding: 40px 0;
        }
        .section-title {
            font-size: 2rem;
            margin-bottom: 24px;
            border-left: 4px solid #f5a623;
            padding-left: 16px;
        }
        .section-title i {
            color: #f5a623;
            margin-right: 10px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border-color: rgba(245, 166, 35, 0.3);
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #f5a623;
        }
        .card h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: #ffd166;
        }
        .card p {
            color: #c8c8e0;
            margin-bottom: 8px;
        }
        .card .icon-large {
            font-size: 2.2rem;
            color: #f5a623;
            margin-bottom: 12px;
        }
        .featured-image-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
            text-align: center;
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image-wrapper figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8888aa;
            background: rgba(0, 0, 0, 0.3);
        }
        .search-section {
            background: rgba(245, 166, 35, 0.04);
            border-radius: 20px;
            padding: 32px 24px;
            margin: 32px 0;
            border: 1px solid rgba(245, 166, 35, 0.15);
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 16px auto 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 60px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.4);
            color: #f0f0f0;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5a623;
            box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #e94560);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        @media (max-width: 768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #f5a623;
        }
        .comment-box textarea,
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 2px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.3);
            color: #f0f0f0;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
            margin-bottom: 12px;
            font-family: inherit;
            resize: vertical;
        }
        .comment-box textarea:focus,
        .comment-box input[type="text"]:focus {
            border-color: #f5a623;
        }
        .comment-box textarea {
            min-height: 100px;
        }
        .btn {
            padding: 12px 28px;
            border-radius: 60px;
            border: none;
            background: linear-gradient(135deg, #f5a623, #e94560);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5a623;
            color: #f5a623;
        }
        .btn-outline:hover {
            background: rgba(245, 166, 35, 0.1);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444466;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .rating-display {
            margin-top: 12px;
            font-size: 1.1rem;
            color: #c8c8e0;
        }
        .rating-display .stars {
            color: #f5a623;
            letter-spacing: 2px;
        }
        friend-link {
            display: block;
            padding: 24px 0;
        }
        .friend-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }
        .friend-link-list li a {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 18px;
            border-radius: 60px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
            transition: 0.3s;
            display: inline-block;
        }
        .friend-link-list li a:hover {
            background: rgba(245, 166, 35, 0.12);
            border-color: #f5a623;
            text-decoration: none;
        }
        .site-footer {
            background: #08081a;
            border-top: 2px solid rgba(245, 166, 35, 0.15);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-copy {
            font-size: 0.9rem;
            color: #666688;
        }
        .footer-copy a {
            color: #8888aa;
        }
        .footer-copy .copyright {
            margin-top: 8px;
            display: block;
        }
        @media (max-width: 900px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 15, 42, 0.98);
                padding: 16px 20px;
                border-radius: 16px;
                margin-top: 8px;
                border: 1px solid rgba(245, 166, 35, 0.15);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                align-items: flex-start;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .text-highlight {
            color: #f5a623;
            font-weight: 600;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .space-y-24>*+* {
            margin-top: 24px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.2), transparent);
            margin: 32px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: rgba(245, 166, 35, 0.12);
            color: #f5a623;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            color: #c8c8e0;
        }
        .data-table tr:hover td {
            background: rgba(255, 255, 255, 0.03);
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .interview-block {
            background: rgba(245, 166, 35, 0.06);
            border-left: 4px solid #f5a623;
            padding: 20px 24px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
            font-style: italic;
        }
        .interview-block .attribution {
            margin-top: 12px;
            font-style: normal;
            font-weight: 600;
            color: #f5a623;
        }
        .stat-highlight {
            display: inline-block;
            background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(233, 69, 96, 0.1));
            padding: 4px 14px;
            border-radius: 60px;
            font-weight: 700;
            color: #f5a623;
        }
