* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a73e8;
            --secondary-color: #ea4335;
            --accent-color: #34a853;
            --dark-color: #202124;
            --light-color: #f8f9fa;
            --text-color: #333;
            --border-color: #ddd;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: #f5f5f5;
            font-size: 1.05rem;
        }
        h1, h2, h3, h4 {
            color: var(--dark-color);
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.8rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: white;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            text-decoration: none;
            color: var(--dark-color);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: var(--light-color);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
            display: flex;
            align-items: center;
        }
        .breadcrumb a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: #666;
            font-size: 0.8rem;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .content-area {
            background-color: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            align-self: start;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
            color: #666;
            font-size: 0.95rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        .highlight-box {
            background-color: #e8f4fd;
            border-left: 5px solid var(--primary-color);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: scale(1.01);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .content-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed var(--primary-color);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--secondary-color);
            border-bottom-color: var(--secondary-color);
        }
        .feature-list {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 8px;
            margin: 2.5rem 0;
        }
        .feature-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .feature-list li {
            padding-left: 2rem;
            position: relative;
        }
        .feature-list li:before {
            content: "✓";
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .comparison-table th, .comparison-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #eef7ff;
        }
        .search-widget {
            margin-bottom: 2.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #0d62d9;
        }
        .rating-widget {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffc107;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 1.5rem;
        }
        .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        .rating-form button {
            width: 100%;
            padding: 1rem;
            background-color: var(--accent-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #2d9c4b;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        .comment-form button {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0d62d9;
        }
        .comment {
            display: flex;
            gap: 1.5rem;
            padding: 1.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .comment-content h4 {
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        .comment-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: flex;
            gap: 1rem;
        }
        .footer-links {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #8ab4f8;
            text-decoration: none;
            font-weight: 500;
            display: block;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: #bbdefb;
            text-decoration: underline;
        }
        footer {
            background-color: #171717;
            color: #b0b0b0;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .feature-list ul {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .content-area, .sidebar {
                padding: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
            .comment {
                flex-direction: column;
                gap: 1rem;
            }
            .comment-avatar {
                align-self: flex-start;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .logo {
                font-size: 1.8rem;
            }
            .content-area, .sidebar {
                padding: 1.5rem;
            }
        }
        .text-bold {
            font-weight: 700;
            color: var(--dark-color);
        }
        .text-italic {
            font-style: italic;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
