        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #222;
            background: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { color: #1a1a1a; font-weight: 700; line-height: 1.2; margin-bottom: 0.75em; }
        h1 { font-size: 2.5rem; border-bottom: 3px solid #2a5caa; padding-bottom: 0.3em; margin-top: 1em; }
        h2 { font-size: 1.8rem; border-left: 4px solid #2a5caa; padding-left: 0.7rem; margin-top: 2.2em; }
        h3 { font-size: 1.4rem; margin-top: 1.8em; }
        h4 { font-size: 1.1rem; margin-top: 1.5em; color: #444; }
        p { margin-bottom: 1.2em; }
        a { color: #2a5caa; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #e63946; text-decoration: underline; }
        strong { font-weight: 700; color: #333; }
        em { font-style: italic; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: #fff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a1a1a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i { color: #2a5caa; }
        .my-logo a { color: inherit; }
        .my-logo a:hover { text-decoration: none; }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        nav a {
            font-weight: 600;
            font-size: 0.95rem;
            color: #444;
            padding: 0.5rem 0.2rem;
            position: relative;
        }
        nav a:hover { color: #2a5caa; text-decoration: none; }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #2a5caa;
            transition: width 0.3s;
        }
        nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #444;
            cursor: pointer;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
            background: #fff;
            min-height: 100vh;
        }
        article { padding-right: 1rem; }
        aside {
            background: #f1f5f9;
            padding: 1.5rem;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .info-box {
            background: #e8f1ff;
            border-left: 4px solid #2a5caa;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .game-card {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: #f8f9fa;
            border: 1px solid #e1e5eb;
            border-radius: 8px;
            padding: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        ul, ol { padding-left: 1.8rem; margin-bottom: 1.2em; }
        li { margin-bottom: 0.5em; }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        th, td {
            border: 1px solid #ddd;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        th {
            background: #2a5caa;
            color: white;
            font-weight: 600;
        }
        tr:nth-child(even) { background: #f8f9fa; }
        button, .btn {
            background: #2a5caa;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: 44px;
            min-width: 44px;
        }
        button:hover, .btn:hover {
            background: #1d4a8a;
            transform: scale(1.03);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #2a5caa;
            color: #2a5caa;
        }
        .btn-outline:hover { background: #2a5caa; color: white; }
        form { margin: 1.5rem 0; }
        .form-group { margin-bottom: 1.2rem; }
        label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 600;
            color: #444;
        }
        input, select, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea { min-height: 120px; resize: vertical; }
        .rating { display: flex; gap: 0.3rem; margin: 0.5rem 0; }
        .rating i { color: #ffc107; cursor: pointer; font-size: 1.3rem; }
        .social-share {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .social-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #444;
            font-size: 1.2rem;
        }
        .social-share a:hover { background: #2a5caa; color: white; text-decoration: none; }
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: none;
        }
        footer {
            background: #1a1a1a;
            color: #ddd;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 { color: #fff; border-left-color: #e63946; }
        friend-link { display: block; margin-bottom: 0.7rem; }
        friend-link a { color: #a3c4ff; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            h3 { font-size: 1.3rem; }
            .header-content { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: white;
                position: absolute;
                top: 100%;
                left: 0;
                box-shadow: 0 8px 16px rgba(0,0,0,0.1);
                padding: 1rem 1.5rem;
                gap: 0;
            }
            nav ul.show { display: flex; }
            nav li { margin: 0.5rem 0; }
            .hamburger { display: block; }
            main { grid-template-columns: 1fr; }
            article { padding-right: 0; }
            aside { position: static; margin-top: 2rem; }
            .game-card { grid-template-columns: 1fr; }
            .social-share { justify-content: center; }
        }
        @media print {
            header, aside, .social-share, #backToTop, footer, form, button { display: none; }
            body { background: white; color: black; }
            a { color: black; text-decoration: underline; }
        }
