        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e53e3e;
            --accent-color: #ed8936;
            --text-primary: #2d3748;
            --text-secondary: #4a5568;
            --bg-light: #f7fafc;
            --bg-dark: #1a202c;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--bg-light);
            font-size: 18px;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo:hover {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background-color: var(--primary-color);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.2rem;
        }
        .mobile-nav a:hover {
            color: var(--accent-color);
        }
        .close-menu {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 2px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c53030;
        }
        .rating-system, .comment-form {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #d1d5db;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 5px;
            margin-bottom: 1rem;
            font-family: inherit;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .submit-btn:hover {
            background-color: #2d3748;
            transform: translateY(-2px);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fed7d7 0%, #feebc8 100%);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .important-note {
            background-color: #e6fffa;
            border: 2px solid #38b2ac;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .longtail-links {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background: var(--bg-dark);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .copyright {
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .main-content {
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            body {
                font-size: 16px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1rem;
            }
        }
        @media print {
            .nav-desktop,
            .hamburger-menu,
            .search-box,
            .rating-system,
            .comment-form,
            .longtail-links,
            footer {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 12pt;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
