*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-primary: #0a0a1a;
            --bg-card: #14142b;
            --bg-card-hover: #1c1c3a;
            --text-primary: #f0f0ff;
            --text-secondary: #b0b0d0;
            --text-muted: #7a7a9a;
            --accent-orange: #ff6a00;
            --accent-red: #e63946;
            --accent-blue: #3a86ff;
            --accent-gold: #ffbe0b;
            --border-color: #2a2a4a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 16px;
            --radius-sm: 8px;
            --max-width: 1200px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --transition: 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-sans);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(135deg, #0d0d24 0%, #1a0a2e 100%);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: var(--max-width);
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: opacity var(--transition);
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: var(--text-muted);
            color: var(--text-muted);
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: all var(--transition);
            border: 1px solid transparent;
        }
        .nav-list li a:hover {
            background: rgba(255, 106, 0, 0.15);
            color: var(--accent-orange);
            border-color: rgba(255, 106, 0, 0.25);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .current {
            color: var(--text-secondary);
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 900;
            line-height: 1.15;
            background: linear-gradient(135deg, #fff 30%, var(--accent-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 106, 0, 0.15);
            border: 1px solid rgba(255, 106, 0, 0.25);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: var(--accent-orange);
            font-weight: 500;
        }
        .search-section {
            padding: 24px 0 16px;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            transition: border-color var(--transition);
        }
        .search-form:focus-within {
            border-color: var(--accent-orange);
        }
        .search-form input {
            flex: 1;
            padding: 14px 22px;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 1rem;
            outline: none;
        }
        .search-form input::placeholder {
            color: var(--text-muted);
        }
        .search-form button {
            padding: 14px 28px;
            border: none;
            background: var(--accent-orange);
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e05e00;
        }
        .main-content {
            padding: 30px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media(min-width:992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .content-left {
            min-width: 0;
        }
        .content-left h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 48px 0 18px;
            color: var(--accent-orange);
            border-left: 5px solid var(--accent-orange);
            padding-left: 18px;
        }
        .content-left h2:first-of-type {
            margin-top: 0;
        }
        .content-left h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 36px 0 14px;
            color: var(--accent-gold);
        }
        .content-left h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: var(--text-secondary);
        }
        .content-left p {
            margin-bottom: 18px;
            color: var(--text-secondary);
            font-size: 1.02rem;
        }
        .content-left strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        .content-left ul,
        .content-left ol {
            margin: 14px 0 22px 22px;
            color: var(--text-secondary);
        }
        .content-left li {
            margin-bottom: 8px;
        }
        .feature-image {
            margin: 30px 0 20px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .feature-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 10px 16px;
            background: var(--bg-card);
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
        }
        .game-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 4px solid var(--accent-orange);
            transition: background var(--transition), transform var(--transition);
        }
        .game-card:hover {
            background: var(--bg-card-hover);
            transform: translateX(4px);
        }
        .game-card h4 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        .insight-box {
            background: rgba(255, 190, 11, 0.06);
            border: 1px solid rgba(255, 190, 11, 0.15);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 28px 0;
        }
        .insight-box h4 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 20px;
            border: 1px solid var(--border-color);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--accent-orange);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color var(--transition);
        }
        .sidebar-card ul li a:hover {
            color: var(--accent-gold);
        }
        .sidebar-card ul li a i {
            width: 18px;
            color: var(--accent-orange);
        }
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .rating-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--accent-gold);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            color: var(--text-muted);
            transition: color var(--transition);
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: var(--accent-gold);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .rating-form input,
        .rating-form textarea {
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .rating-form input:focus,
        .rating-form textarea:focus {
            border-color: var(--accent-orange);
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            background: var(--accent-orange);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
        }
        .rating-form button:hover {
            background: #e05e00;
        }
        .comments-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
        }
        .comments-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--accent-gold);
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: var(--text-primary);
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-left: 12px;
        }
        .comment-item .text {
            color: var(--text-secondary);
            margin-top: 6px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 20px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
            font-size: 0.95rem;
            outline: none;
            transition: border-color var(--transition);
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--accent-orange);
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            background: var(--accent-orange);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background var(--transition);
        }
        .comment-form button:hover {
            background: #e05e00;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
            padding: 12px 0 4px;
            border-top: 1px solid var(--border-color);
            margin-top: 40px;
        }
        .last-updated i {
            color: var(--accent-orange);
        }
        .footer {
            background: linear-gradient(135deg, #0d0d24 0%, #1a0a2e 100%);
            border-top: 1px solid var(--border-color);
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        @media(min-width:768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-brand .my-logo {
            font-size: 1.5rem;
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 10px;
            max-width: 320px;
        }
        .footer-links h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            padding: 5px 0;
        }
        .footer-links ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        .footer-links ul li a:hover {
            color: var(--accent-gold);
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.02);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin-top: 24px;
            border: 1px solid var(--border-color);
            font-style: normal;
        }
        friend-link h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        friend-link ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        friend-link ul li a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.85rem;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        @media(max-width:768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                padding: 16px 12px;
                border-radius: var(--radius);
                margin-top: 12px;
                border: 1px solid var(--border-color);
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-left h2 {
                font-size: 1.5rem;
            }
            .content-left h3 {
                font-size: 1.2rem;
            }
            .game-card {
                padding: 18px 16px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .sidebar {
                margin-top: 20px;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--radius-sm);
            }
            .search-form button {
                justify-content: center;
                padding: 12px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 12px;
            }
            .hero {
                padding: 30px 0 24px;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border-color);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }
