body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; color: #e67e22; text-transform: uppercase; letter-spacing: 2px; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #2c3e50; }
        .mobile-nav-toggle { display: none; cursor: pointer; }
        h1 { color: #e74c3c; border-bottom: 3px solid #e74c3c; padding-bottom: 10px; }
        h2 { color: #2980b9; margin-top: 25px; }
        h3 { color: #27ae60; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; background: #e67e22; color: white; text-decoration: none; border-radius: 5px; margin: 15px 0; }
        .game-stats { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 40px; padding-top: 20px; border-top: 2px solid #eee; }
        .tag-cloud { margin: 20px 0; }
        .tag-cloud a { display: inline-block; background: #3498db; color: white; padding: 5px 10px; margin: 3px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-nav-toggle { display: block; }
            .active { display: block; }
            body { padding: 10px; }
        }
