        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            background: #f5f7fb;
            color: #1a1a2e;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover {
            color: #c23152;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f3460;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #e94560;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #e94560;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #16213e;
        }
        h4 {
            font-size: 1.1rem;
            color: #1a1a2e;
            font-weight: 600;
        }
        p {
            margin: 1rem 0;
            font-size: 1.05rem;
        }
        strong {
            color: #0f3460;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            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;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #e94560, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e0e0;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(233, 69, 96, 0.2);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 6px;
            gap: 5px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 0.7rem 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .breadcrumb-wrap ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb-wrap ol li {
            margin: 0;
            padding: 0;
        }
        .breadcrumb-wrap ol li+li::before {
            content: "›";
            margin: 0 10px;
            color: #999;
        }
        .breadcrumb-wrap a {
            color: #0f3460;
        }
        .breadcrumb-wrap .current {
            color: #e94560;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎮";
            position: absolute;
            font-size: 10rem;
            opacity: 0.06;
            right: -2rem;
            bottom: -2rem;
            transform: rotate(-15deg);
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #e94560;
            font-size: 2.6rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 750px;
            margin: 1rem auto 0;
            color: #cbd5e1;
        }
        .hero .badge {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 0.25rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.8rem;
            letter-spacing: 1px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e94560;
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.92rem;
        }
        .sidebar ul li a i {
            width: 20px;
            color: #e94560;
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
            background: #f1f5f9;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            transition: border 0.3s;
        }
        .search-box:focus-within {
            border-color: #e94560;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            background: transparent;
            outline: none;
            font-family: inherit;
        }
        .search-box button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0.8rem 1.6rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
            font-weight: 600;
        }
        .search-box button:hover {
            background: #c23152;
        }
        .toc {
            background: #f8fafc;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 1.5rem 0 2rem;
            border-left: 4px solid #e94560;
        }
        .toc summary {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f3460;
            cursor: pointer;
            padding: 0.2rem 0;
        }
        .toc ol {
            margin: 0.8rem 0 0;
            padding-left: 1.2rem;
        }
        .toc ol li {
            margin-bottom: 0.4rem;
        }
        .toc ol li a {
            color: #1a1a2e;
        }
        .toc ol li a:hover {
            color: #e94560;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #f0f0f0;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
            max-height: 420px;
        }
        .featured-image figcaption {
            padding: 0.7rem 1rem;
            font-size: 0.85rem;
            color: #555;
            background: #f9f9f9;
            border-top: 1px solid #e9ecef;
        }
        .interaction-area {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e9ecef;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form,
        .score-form {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: 16px;
        }
        .comment-form h3,
        .score-form h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form select:focus,
        .score-form input:focus {
            border-color: #e94560;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #c23152;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: #0f3460;
        }
        .btn-secondary:hover {
            background: #16213e;
        }
        .site-footer {
            background: #0f3460;
            color: #ccd6e0;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b0c4de;
        }
        .footer-inner a:hover {
            color: #fff;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: #8fa3b8;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
                white-space: normal;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .main-content {
                padding: 1.2rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo small {
                font-size: 0.55rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-box input {
                padding: 0.6rem 0.8rem;
                font-size: 0.85rem;
            }
            .search-box button {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
        }
        .text-accent {
            color: #e94560;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 1rem;
        }
        .rounded-full {
            border-radius: 999px;
        }
        .shadow-sm {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .bg-soft {
            background: #f1f5f9;
        }
        .emoji-big {
            font-size: 2rem;
            line-height: 1;
        }
        .tag {
            display: inline-block;
            background: #e9ecef;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #0f3460;
            margin-right: 0.3rem;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.5rem;
            color: #f59e0b;
            margin: 0.5rem 0;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition-duration: 0.01ms !important;
            }
        }
