* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f5f7fc;
            color: #1a1e2b;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        a {
            color: #1d4ed8;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #0f3b9e;
            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(145deg, #0a0f1f 0%, #151e30 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(250, 204, 21, 0.15);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            color: #94a3b8;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #facc15;
            color: #facc15;
        }
        .nav-menu {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e2e8f0;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 40px;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: rgba(250, 204, 21, 0.12);
            color: #facc15;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #facc15;
            color: #0a0f1f;
        }
        .breadcrumb {
            background: transparent;
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #64748b;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb .current {
            color: #facc15;
            font-weight: 500;
        }
        main {
            padding: 30px 0 60px;
        }
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 24px;
            padding: 40px 36px;
            margin-bottom: 40px;
            color: #fff;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin: 16px 0 20px;
            max-width: 520px;
        }
        .hero-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #facc15;
        }
        .hero-image {
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 16/9;
            background: #1e293b;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #facc15;
            color: #0a0f1f;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #1e293b;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #334155;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #334155;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 24px 24px;
            color: #334155;
        }
        .article-body li {
            margin-bottom: 6px;
        }
        .article-body .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #facc15;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .article-body .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            margin: 20px 0;
            display: inline-block;
        }
        .article-body .stat-card i {
            color: #f97316;
            margin-right: 8px;
        }
        .article-body .interview-block {
            background: #f1f5f9;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 28px 0;
            font-style: italic;
            border: 1px solid #e2e8f0;
        }
        .article-body .interview-block strong {
            font-style: normal;
            color: #0a0f1f;
        }
        .article-body .linked-game {
            display: inline-block;
            background: #eef2ff;
            color: #1d4ed8;
            padding: 2px 12px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .article-body .linked-game:hover {
            background: #1d4ed8;
            color: #fff;
            text-decoration: none;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #0a0f1f;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .sidebar-card li a:hover {
            background: #f1f5f9;
            text-decoration: none;
        }
        .sidebar-card li a i {
            color: #f97316;
            width: 20px;
            text-align: center;
        }
        .form-section {
            margin: 48px 0;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .form-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        .form-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-card h3 i {
            color: #f97316;
        }
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            font-weight: 600;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 4px;
            color: #1e293b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: 0.2s;
            background: #f8fafc;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f97316;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(135deg, #f97316, #facc15);
            color: #0a0f1f;
            font-weight: 700;
            padding: 10px 28px;
            border: none;
            border-radius: 40px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
        }
        .btn-secondary {
            background: #1e293b;
            color: #fff;
        }
        .btn-secondary:hover {
            background: #0f172a;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        footer {
            background: #0a0f1f;
            color: #cbd5e1;
            padding: 40px 0 24px;
            margin-top: 40px;
            border-top: 3px solid #facc15;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        footer h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        footer a {
            color: #94a3b8;
        }
        footer a:hover {
            color: #facc15;
            text-decoration: none;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 16px 20px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin: 16px 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 24px;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            font-size: 0.85rem;
            text-align: center;
            color: #64748b;
        }
        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 28px 20px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .form-section {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                position: relative;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 12px;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #475569;
            margin-right: 6px;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.4rem;
            color: #facc15;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f1f5f9;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #475569;
        }
