        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #6c3eb8;
            --primary-light: #8b5cf6;
            --primary-dark: #4c1d95;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --bg: #0f0e17;
            --bg-card: #1a1a2e;
            --bg-card-hover: #222244;
            --text: #f1f5f9;
            --text-muted: #94a3b8;
            --text-dark: #1e293b;
            --border: #2d2d4a;
            --radius: 16px;
            --radius-sm: 8px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: var(--accent-light);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 14, 23, 0.92);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border);
            height: var(--header-height);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 16px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: var(--text-muted);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: var(--radius-sm);
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu li a:hover {
            background: rgba(139, 92, 246, 0.15);
            color: var(--text);
        }
        .breadcrumb {
            padding: 14px 0 6px 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: var(--border);
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--accent), #f472b6, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 18px;
        }
        .search-block {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 20px 0 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .search-block form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-block input[type="text"]:focus {
            border-color: var(--primary-light);
        }
        .search-block button {
            padding: 14px 28px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-block button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 62, 184, 0.4);
        }
        .content-area {
            padding: 10px 0 40px;
        }
        .content-area h2 {
            font-size: 2rem;
            font-weight: 800;
            margin: 48px 0 16px;
            color: var(--accent);
            border-bottom: 2px solid var(--border);
            padding-bottom: 10px;
        }
        .content-area h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 36px 0 12px;
            color: var(--primary-light);
        }
        .content-area h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--text);
        }
        .content-area p {
            margin-bottom: 1.2rem;
            color: var(--text-muted);
            max-width: 780px;
        }
        .content-area strong {
            color: var(--text);
            font-weight: 600;
        }
        .content-area em {
            color: var(--accent-light);
            font-style: normal;
            font-weight: 500;
        }
        .featured-image {
            margin: 32px 0 40px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
            padding: 8px;
        }
        .featured-image img {
            border-radius: calc(var(--radius) - 8px);
            width: 100%;
            object-fit: cover;
            max-height: 460px;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 24px 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 14px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-muted);
            font-weight: 500;
            transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
        }
        .link-grid li a:hover {
            background: var(--bg-card-hover);
            color: var(--accent);
            border-color: var(--primary-light);
            transform: translateY(-2px);
        }
        .link-grid li a::before {
            content: "🎮 ";
            font-size: 1.1rem;
        }
        .comment-section,
        .score-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px 24px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .comment-section h3,
        .score-section h3 {
            margin-top: 0;
            color: var(--accent);
        }
        .comment-section form,
        .score-section form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .comment-section textarea,
        .score-section select,
        .comment-section input {
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            font-family: var(--font);
        }
        .comment-section textarea:focus,
        .score-section select:focus,
        .comment-section input:focus {
            border-color: var(--primary-light);
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .score-section button {
            align-self: flex-start;
            padding: 12px 32px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-section button:hover,
        .score-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 62, 184, 0.4);
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .score-display .stars {
            color: var(--accent);
            font-size: 1.4rem;
            letter-spacing: 2px;
        }
        .score-display .avg {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text);
        }
        .score-display .count {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .site-footer {
            margin-top: auto;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            padding: 40px 0 24px;
        }
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-style: normal;
        }
        friend-link a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color 0.25s;
        }
        friend-link a:hover {
            color: var(--accent);
        }
        .copyright {
            color: var(--text-muted);
            font-size: 0.85rem;
            border-top: 1px solid var(--border);
            padding-top: 20px;
            text-align: center;
        }
        .copyright strong {
            color: var(--text);
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: var(--text-muted);
            background: var(--bg-card);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid var(--border);
            margin-bottom: 12px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(15, 14, 23, 0.98);
                flex-direction: column;
                padding: 16px 20px 24px;
                border-bottom: 1px solid var(--border);
                backdrop-filter: blur(18px);
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 16px;
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .content-area h2 {
                font-size: 1.6rem;
            }
            .content-area h3 {
                font-size: 1.25rem;
            }
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                min-width: auto;
                width: 100%;
            }
            .search-block button {
                width: 100%;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .comment-section button,
            .score-section button {
                width: 100%;
            }
            .featured-image img {
                max-height: 240px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            .content-area h2 {
                font-size: 1.3rem;
            }
            .content-area h3 {
                font-size: 1.1rem;
            }
            .search-block,
            .comment-section,
            .score-section {
                padding: 18px 14px;
            }
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .text-center {
            text-align: center;
        }
        .gap-1 {
            gap: 8px;
        }
