        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f8f9fa;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #2563eb; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1d4ed8; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; }
        h1 { font-size: 2.8rem; margin: 1.5rem 0; color: #1e293b; line-height: 1.2; }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1rem; color: #334155; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; margin: 2rem 0 0.8rem; color: #475569; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.6rem; color: #64748b; }
        p, li { margin-bottom: 1.2rem; font-size: 1.1rem; color: #475569; }
        .highlight { background-color: #fef3c7; padding: 0.2rem 0.4rem; border-radius: 4px; font-weight: 600; }
        .lead { font-size: 1.3rem; color: #4b5563; font-weight: 300; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .site-header {
            background: #1e293b;
            color: white;
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #60a5fa;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo:hover { color: #93c5fd; text-decoration: none; }
        .my-logo span { color: #fbbf24; }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: #374151;
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.95rem;
            color: #6b7280;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .breadcrumb a { color: #6b7280; }
        .breadcrumb a:hover { color: #374151; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title { font-size: 1.3rem; margin-bottom: 1rem; color: #1e293b; padding-bottom: 0.5rem; border-bottom: 2px solid #f1f5f9; }
        .search-form { display: flex; }
        .search-input { flex-grow: 1; padding: 0.8rem; border: 1px solid #d1d5db; border-radius: 6px 0 0 6px; font-size: 1rem; }
        .search-btn { background: #3b82f6; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 0 6px 6px 0; cursor: pointer; font-weight: 600; }
        .search-btn:hover { background: #2563eb; }
        .rating-widget .stars { font-size: 1.8rem; color: #fbbf24; margin: 0.5rem 0; }
        .rating-widget form { display: flex; flex-direction: column; gap: 0.8rem; }
        .rating-widget select, .comment-input { width: 100%; padding: 0.8rem; border: 1px solid #d1d5db; border-radius: 6px; font-size: 1rem; }
        .submit-btn { background: #10b981; color: white; border: none; padding: 0.9rem; border-radius: 6px; cursor: pointer; font-weight: 600; }
        .submit-btn:hover { background: #059669; }
        .related-links { list-style: none; }
        .related-links li { margin-bottom: 0.8rem; padding-left: 1.2rem; position: relative; }
        .related-links li:before { content: '🎮'; position: absolute; left: 0; }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .update-time {
            font-size: 0.9rem;
            color: #6b7280;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #d1d5db;
        }
        .internal-link { font-weight: 600; color: #7c3aed; }
        .internal-link:hover { color: #5b21b6; }
        .site-footer {
            background: #1e293b;
            color: #cbd5e1;
            padding: 3rem 0;
            margin-top: 4rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link {
            display: inline-block;
            background: #374151;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            color: #93c5fd;
            font-weight: 500;
        }
        friend-link a { color: inherit; }
        friend-link:hover { background: #4b5563; }
        .copyright { text-align: center; font-size: 0.9rem; color: #9ca3af; margin-top: 1rem; }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                gap: 0;
            }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; }
            .nav-links a { display: block; padding: 1rem; border-bottom: 1px solid #374151; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            .article-content { padding: 1.5rem; }
        }
