* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg: #0f0e17;
            --surface: #1a1a2e;
            --card: #16213e;
            --accent: #e94560;
            --gold: #f5c518;
            --text: #fffffe;
            --text-muted: #a7a9be;
            --border: #2a2a4a;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: .3s;
        }
        a:hover {
            color: #fff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: var(--surface);
            border-bottom: 2px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(26, 26, 46, 0.96);
        }
        .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;
            background: linear-gradient(135deg, var(--gold), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--accent);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: .85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--border);
            color: var(--text);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: .3s;
        }
        .nav-toggle:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text-muted);
            border: 1px solid transparent;
            transition: .3s;
        }
        .nav-menu a:hover {
            color: var(--text);
            background: var(--card);
            border-color: var(--border);
            text-decoration: none;
        }
        .nav-menu a.active {
            color: var(--gold);
            border-color: var(--gold);
            background: rgba(245, 197, 24, 0.08);
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .breadcrumb .sep {
            margin: 0 4px;
        }
        .search-wrap {
            background: var(--card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 28px 0;
            border: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-wrap i {
            font-size: 1.4rem;
            color: var(--gold);
        }
        .search-wrap form {
            flex: 1;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .search-wrap input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: .3s;
        }
        .search-wrap input:focus {
            border-color: var(--gold);
        }
        .search-wrap button {
            padding: 12px 28px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            font-size: 1rem;
        }
        .search-wrap button:hover {
            background: #d63e55;
            transform: scale(1.02);
        }
        .content {
            padding: 20px 0 40px;
        }
        .content h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0 12px;
            background: linear-gradient(135deg, #fff, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: inline-block;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--gold);
        }
        .content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #ddd;
        }
        .content p {
            margin: 16px 0;
            color: var(--text-muted);
            font-size: 1.05rem;
        }
        .content p strong {
            color: var(--text);
            font-weight: 600;
        }
        .content ul,
        .content ol {
            margin: 16px 0;
            padding-left: 28px;
            color: var(--text-muted);
        }
        .content li {
            margin: 8px 0;
        }
        .content .highlight-box {
            background: var(--card);
            border-left: 5px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .content .highlight-box p {
            margin: 4px 0;
        }
        .content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .content .stat-card {
            background: var(--surface);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--border);
            transition: .3s;
        }
        .content .stat-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
        }
        .content .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--gold);
        }
        .content .stat-card .label {
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .content .img-wrap {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--surface);
            padding: 8px;
            border: 1px solid var(--border);
        }
        .content .img-wrap img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .content .img-wrap .caption {
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            font-style: italic;
        }
        .content .interview-box {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px;
            margin: 24px 0;
            border: 1px solid var(--border);
        }
        .content .interview-box .q {
            color: var(--gold);
            font-weight: 600;
        }
        .content .interview-box .a {
            color: var(--text-muted);
            padding-left: 20px;
            border-left: 2px solid var(--border);
            margin: 8px 0 16px;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media(max-width:768px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section input,
        .rating-section select {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 0.95rem;
            outline: none;
            transition: .3s;
            font-family: inherit;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: var(--gold);
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            padding: 12px 24px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: .3s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #d63e55;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: var(--gold);
        }
        .rating-stars .star:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            padding: 28px 0;
            border-top: 2px solid var(--border);
            margin-top: 40px;
        }
        friend-link h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--gold);
        }
        friend-link .links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        friend-link .links-grid a {
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
        }
        friend-link .links-grid a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
            text-decoration: none;
        }
        .footer {
            background: var(--surface);
            padding: 32px 0 24px;
            border-top: 2px solid var(--border);
            margin-top: 24px;
        }
        .footer .inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
        }
        .footer .copy {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer .copy strong {
            color: var(--text);
        }
        .footer .foot-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer .foot-links a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer .foot-links a:hover {
            color: var(--gold);
        }
        @media(max-width:768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--surface);
                padding: 12px 0;
                border-top: 1px solid var(--border);
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 12px 16px;
            }
            .content h1 {
                font-size: 2rem;
            }
            .content h2 {
                font-size: 1.5rem;
            }
            .content h3 {
                font-size: 1.2rem;
            }
            .search-wrap form {
                flex-direction: column;
            }
            .search-wrap button {
                width: 100%;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .content .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .content h1 {
                font-size: 1.6rem;
            }
            .content .stat-grid {
                grid-template-columns: 1fr;
            }
            .content p {
                font-size: 0.95rem;
            }
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .mb-2 {
            margin-bottom: 16px;
        }
        .mt-2 {
            margin-top: 16px;
        }
        .text-gold {
            color: var(--gold);
        }
        .text-accent {
            color: var(--accent);
        }
        .fw-bold {
            font-weight: 700;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--card);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
            margin: 8px 0 16px;
        }
        .updated-badge i {
            color: var(--gold);
        }
