* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0d0f1a;
            --bg-card: #161b2e;
            --bg-card2: #1c2340;
            --accent: #7b61ff;
            --accent2: #4fc3f7;
            --accent3: #ff6ec7;
            --text: #e8eaf0;
            --text-muted: #a0a8c0;
            --text-light: #ffffff;
            --border: #2a3150;
            --radius: 16px;
            --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            font-family: var(--font);
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent2);
            text-decoration: none;
            transition: 0.2s;
        }
        a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0f1a 0%, #1a1040 100%);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }
        .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(--accent), var(--accent3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            transition: 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: var(--text-muted);
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 1.6rem;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--bg-card);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--text-light);
            background: rgba(123, 97, 255, 0.15);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent2);
        }
        .breadcrumb span {
            color: var(--text);
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(123, 97, 255, 0.08) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-light) 30%, var(--accent2) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero-meta i {
            margin-right: 6px;
            color: var(--accent);
        }
        .search-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 32px 28px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 20px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--bg-dark);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            min-width: 200px;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.2);
        }
        .search-section button {
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--accent), var(--accent3));
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(123, 97, 255, 0.3);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: var(--text-light);
            border-left: 4px solid var(--accent);
            padding-left: 16px;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: var(--accent2);
        }
        .main-content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--accent3);
        }
        .main-content p {
            margin-bottom: 16px;
            color: var(--text);
        }
        .main-content ul,
        .main-content ol {
            margin: 12px 0 20px 24px;
            color: var(--text);
        }
        .main-content li {
            margin-bottom: 8px;
        }
        .main-content .highlight {
            background: rgba(123, 97, 255, 0.08);
            border-left: 3px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .main-content .stat-box {
            display: inline-block;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 28px;
            margin: 8px 4px;
            text-align: center;
        }
        .stat-box .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent2);
            display: block;
        }
        .stat-box .label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px;
            background: var(--bg-card);
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }
        .interview-block {
            background: var(--bg-card2);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .interview-block .speaker {
            font-weight: 700;
            color: var(--accent2);
        }
        .interview-block .quote {
            font-style: italic;
            color: var(--text);
            margin: 8px 0 16px 20px;
            border-left: 2px solid var(--accent3);
            padding-left: 16px;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border);
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 12px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card li a {
            display: block;
            padding: 6px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-card li a:hover {
            color: var(--accent3);
            text-decoration: none;
        }
        .rating-section,
        .comment-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .rating-section h3,
        .comment-section h3 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
            margin: 12px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: var(--border);
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
        }
        .rating-section form,
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 600px;
        }
        .rating-section input[type="text"],
        .rating-section textarea,
        .comment-section input[type="text"],
        .comment-section textarea {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 10px;
            background: var(--bg-dark);
            color: var(--text);
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: var(--font);
        }
        .rating-section input:focus,
        .rating-section textarea:focus,
        .comment-section input:focus,
        .comment-section textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.15);
        }
        .rating-section textarea,
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-section button,
        .comment-section button {
            align-self: flex-start;
            padding: 12px 32px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .rating-section button:hover,
        .comment-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(79, 195, 247, 0.25);
        }
        .site-footer {
            background: linear-gradient(135deg, #0d0f1a 0%, #1a1040 100%);
            border-top: 1px solid var(--border);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-col h4 {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 16px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .footer-col a:hover {
            color: var(--accent2);
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li {
            margin-bottom: 8px;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid var(--border);
            margin-top: 16px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        friend-link a {
            color: var(--accent2);
            margin: 0 8px 0 4px;
        }
        friend-link a:hover {
            color: var(--accent3);
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .copyright a {
            color: var(--accent2);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg-card);
                padding: 16px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid var(--border);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                width: 100%;
            }
            .rating-section,
            .comment-section {
                padding: 20px;
            }
            .stat-box {
                padding: 14px 18px;
            }
            .stat-box .num {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 16px;
            }
            .interview-block {
                padding: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.7rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .last-update {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-align: right;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
        }
        .last-update i {
            margin-right: 6px;
        }
