        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #1a365d; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #d4af37; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: #2d3748; padding-top: 1rem; }
        h3 { font-size: 1.8rem; color: #4a5568; }
        h4 { font-size: 1.4rem; color: #718096; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #2b6cb0; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #1a202c; text-decoration: underline; }
        strong { color: #2d3748; }
        em { font-style: italic; color: #555; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 0; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        .site-header {
            background: linear-gradient(to right, #1a202c, #2d3748);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo a { color: transparent; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2d3748;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: #e2e8f0;
            padding: 1rem;
            border-bottom: 1px solid #4a5568;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .my-logo { font-size: 1.8rem; }
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #2b6cb0; }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .intro {
            font-size: 1.3rem;
            color: #4a5568;
            border-left: 5px solid #d4af37;
            padding-left: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 2rem 0;
            border: 1px solid #e2e8f0;
        }
        .highlight-box {
            background: linear-gradient(120deg, #feffe8 0%, #f0fff4 100%);
            border-left: 6px solid #38a169;
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        .link-list {
            background: #f7fafc;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px dashed #cbd5e0;
        }
        .link-list ul { list-style: none; padding-left: 0; }
        .link-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .link-list li:before {
            content: '🎮';
            position: absolute;
            left: 0;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.4rem;
            color: #2d3748;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .search-form { display: flex; }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-button {
            background: #2b6cb0;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover { background: #1a202c; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .stars { display: flex; gap: 0.5rem; font-size: 1.8rem; color: #e2e8f0; }
        .stars .active { color: #f6ad55; }
        .stars i { cursor: pointer; }
        .form-input, .form-textarea {
            padding: 0.9rem;
            border: 2px solid #cbd5e0;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .form-submit {
            background: #38a169;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .form-submit:hover { background: #2f855a; }
        .site-footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .footer-logo { font-size: 2rem; margin-bottom: 1rem; }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            margin: 0.3rem;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255,255,255,0.1); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .last-updated {
            font-size: 0.9rem;
            color: #718096;
            font-style: italic;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }
